diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/arch/arm/include/asm/arch-am33xx/i2c.h | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/arch/arm/include/asm/arch-am33xx/i2c.h')
-rw-r--r-- | roms/u-boot/arch/arm/include/asm/arch-am33xx/i2c.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/roms/u-boot/arch/arm/include/asm/arch-am33xx/i2c.h b/roms/u-boot/arch/arm/include/asm/arch-am33xx/i2c.h new file mode 100644 index 000000000..c2a98500d --- /dev/null +++ b/roms/u-boot/arch/arm/include/asm/arch-am33xx/i2c.h @@ -0,0 +1,20 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * (C) Copyright 2012 + * Texas Instruments, <www.ti.com> + */ +#ifndef _I2C_AM33XX_H_ +#define _I2C_AM33XX_H_ + +#include <asm/omap_i2c.h> + +#define I2C_BASE1 0x44E0B000 +#define I2C_BASE2 0x4802A000 +#define I2C_BASE3 0x4819C000 + +#define I2C_DEFAULT_BASE I2C_BASE1 + +#define I2C_IP_CLK 48000000 +#define I2C_INTERNAL_SAMPLING_CLK 12000000 + +#endif /* _I2C_AM33XX_H_ */ |