diff options
author | Kevin Hilman <khilman@deeprootsystems.com> | 2009-04-14 10:50:37 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2009-04-27 12:49:46 -0400 |
commit | 5526b3f7e3317bdd0dcc0483214935ae64236efb (patch) | |
tree | b79862724db5ffec0ffb0bb78c3534e5ffefb1b7 /arch/arm/mach-davinci/devices.c | |
parent | 617b925f94e0126841164ffd40dd3a8879502b57 (diff) |
davinci: update pin-multiplexing support
Update MUX support to be more general and useful across multiple
SoCs in the DaVinci family.
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/devices.c')
-rw-r--r-- | arch/arm/mach-davinci/devices.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/devices.c b/arch/arm/mach-davinci/devices.c index 3ea6d477f06b..a31370b93dd2 100644 --- a/arch/arm/mach-davinci/devices.c +++ b/arch/arm/mach-davinci/devices.c | |||
@@ -21,6 +21,8 @@ | |||
21 | #include <mach/hardware.h> | 21 | #include <mach/hardware.h> |
22 | #include <mach/i2c.h> | 22 | #include <mach/i2c.h> |
23 | #include <mach/irqs.h> | 23 | #include <mach/irqs.h> |
24 | #include <mach/cputype.h> | ||
25 | #include <mach/mux.h> | ||
24 | 26 | ||
25 | #define DAVINCI_I2C_BASE 0x01C21000 | 27 | #define DAVINCI_I2C_BASE 0x01C21000 |
26 | 28 | ||
@@ -45,6 +47,9 @@ static struct platform_device davinci_i2c_device = { | |||
45 | 47 | ||
46 | void __init davinci_init_i2c(struct davinci_i2c_platform_data *pdata) | 48 | void __init davinci_init_i2c(struct davinci_i2c_platform_data *pdata) |
47 | { | 49 | { |
50 | if (cpu_is_davinci_dm644x()) | ||
51 | davinci_cfg_reg(DM644X_I2C); | ||
52 | |||
48 | davinci_i2c_device.dev.platform_data = pdata; | 53 | davinci_i2c_device.dev.platform_data = pdata; |
49 | (void) platform_device_register(&davinci_i2c_device); | 54 | (void) platform_device_register(&davinci_i2c_device); |
50 | } | 55 | } |