1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * (C) Copyright 2012 4 * Texas Instruments, <www.ti.com> 5 */ 6 #ifndef _I2C_AM33XX_H_ 7 #define _I2C_AM33XX_H_ 8 9 #include <asm/omap_i2c.h> 10 11 #define I2C_BASE1 0x44E0B000 12 #define I2C_BASE2 0x4802A000 13 #define I2C_BASE3 0x4819C000 14 15 #define I2C_DEFAULT_BASE I2C_BASE1 16 17 #define I2C_IP_CLK 48000000 18 #define I2C_INTERNAL_SAMPLING_CLK 12000000 19 20 #endif /* _I2C_AM33XX_H_ */ 21