blob: 7ce1c244ca695a64eab3edab5c0c350341ae9250 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2017 Google
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <drivers/i2c/designware/dw_i2c.h>
#include <soc/iomap.h>
static const uintptr_t i2c_bus_address[] = {
I2C_BASE_ADDRESS + I2C_DEVICE_SIZE * 0,
I2C_BASE_ADDRESS + I2C_DEVICE_SIZE * 1,
I2C_BASE_ADDRESS + I2C_DEVICE_SIZE * 2,
I2C_BASE_ADDRESS + I2C_DEVICE_SIZE * 3,
};
uintptr_t dw_i2c_base_address(unsigned int bus)
{
return bus < I2C_DEVICE_COUNT ? i2c_bus_address[bus] : 0;
}
|