diff options
author | Naveen Krishna Ch <ch.naveen@samsung.com> | 2010-08-06 06:32:43 -0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2010-08-06 06:32:43 -0400 |
commit | 2c97886df9bba9346c7799ed14f489075cf2c39b (patch) | |
tree | f66994fc4a46aa104e2c7f04fdda2d14e5a199f7 /arch | |
parent | ff7124a38f2663088b7404ddf30cd1016604dceb (diff) |
ARM: S5P6440: Add support for I2C channel 0 and 1 on SMDK6440
This patch adds helper functions for I2C channel 0 and 1, GPIO
configurations for I2C on S5P6440 and support I2C-0/1 devices
on SMDK6440.
Signed-off-by: Naveen Krishna Ch <ch.naveen@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Conflicts:
arch/arm/mach-s5p6440/Kconfig
arch/arm/mach-s5p6440/include/mach/map.h
arch/arm/mach-s5p6440/mach-smdk6440.c
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-s5p6440/Kconfig | 7 | ||||
-rw-r--r-- | arch/arm/mach-s5p6440/Makefile | 1 | ||||
-rw-r--r-- | arch/arm/mach-s5p6440/include/mach/map.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-s5p6440/mach-smdk6440.c | 20 | ||||
-rw-r--r-- | arch/arm/mach-s5p6440/setup-i2c0.c | 7 | ||||
-rw-r--r-- | arch/arm/mach-s5p6440/setup-i2c1.c | 30 |
6 files changed, 66 insertions, 1 deletions
diff --git a/arch/arm/mach-s5p6440/Kconfig b/arch/arm/mach-s5p6440/Kconfig index b2d471653975..153f8c9994c8 100644 --- a/arch/arm/mach-s5p6440/Kconfig +++ b/arch/arm/mach-s5p6440/Kconfig | |||
@@ -13,15 +13,22 @@ config CPU_S5P6440 | |||
13 | help | 13 | help |
14 | Enable S5P6440 CPU support | 14 | Enable S5P6440 CPU support |
15 | 15 | ||
16 | config S5P6440_SETUP_I2C1 | ||
17 | bool | ||
18 | help | ||
19 | Common setup code for i2c bus 1. | ||
20 | |||
16 | config MACH_SMDK6440 | 21 | config MACH_SMDK6440 |
17 | bool "SMDK6440" | 22 | bool "SMDK6440" |
18 | select CPU_S5P6440 | 23 | select CPU_S5P6440 |
19 | select SAMSUNG_DEV_TS | 24 | select SAMSUNG_DEV_TS |
20 | select SAMSUNG_DEV_ADC | 25 | select SAMSUNG_DEV_ADC |
21 | select S3C_DEV_RTC | 26 | select S3C_DEV_RTC |
27 | select S3C_DEV_I2C1 | ||
22 | select S3C_DEV_WDT | 28 | select S3C_DEV_WDT |
23 | select HAVE_S3C_RTC | 29 | select HAVE_S3C_RTC |
24 | select HAVE_S3C2410_WATCHDOG | 30 | select HAVE_S3C2410_WATCHDOG |
31 | select S5P6440_SETUP_I2C1 | ||
25 | help | 32 | help |
26 | Machine support for the Samsung SMDK6440 | 33 | Machine support for the Samsung SMDK6440 |
27 | 34 | ||
diff --git a/arch/arm/mach-s5p6440/Makefile b/arch/arm/mach-s5p6440/Makefile index be3c53aab23f..c3fe4d3662a9 100644 --- a/arch/arm/mach-s5p6440/Makefile +++ b/arch/arm/mach-s5p6440/Makefile | |||
@@ -22,3 +22,4 @@ obj-$(CONFIG_MACH_SMDK6440) += mach-smdk6440.o | |||
22 | # device support | 22 | # device support |
23 | obj-y += dev-audio.o | 23 | obj-y += dev-audio.o |
24 | obj-$(CONFIG_S3C64XX_DEV_SPI) += dev-spi.o | 24 | obj-$(CONFIG_S3C64XX_DEV_SPI) += dev-spi.o |
25 | obj-$(CONFIG_S5P6440_SETUP_I2C1) += setup-i2c1.o | ||
diff --git a/arch/arm/mach-s5p6440/include/mach/map.h b/arch/arm/mach-s5p6440/include/mach/map.h index 255a2e7f0b9a..6cc5cbc88ffb 100644 --- a/arch/arm/mach-s5p6440/include/mach/map.h +++ b/arch/arm/mach-s5p6440/include/mach/map.h | |||
@@ -52,6 +52,7 @@ | |||
52 | #define S5P_SZ_UART SZ_256 | 52 | #define S5P_SZ_UART SZ_256 |
53 | 53 | ||
54 | #define S5P6440_PA_IIC0 (0xEC104000) | 54 | #define S5P6440_PA_IIC0 (0xEC104000) |
55 | #define S5P6440_PA_IIC1 (0xEC20F000) | ||
55 | 56 | ||
56 | #define S5P6440_PA_SPI0 0xEC400000 | 57 | #define S5P6440_PA_SPI0 0xEC400000 |
57 | #define S5P6440_PA_SPI1 0xEC500000 | 58 | #define S5P6440_PA_SPI1 0xEC500000 |
@@ -77,6 +78,7 @@ | |||
77 | #define S3C_PA_UART S5P6440_PA_UART | 78 | #define S3C_PA_UART S5P6440_PA_UART |
78 | #define S3C_PA_IIC S5P6440_PA_IIC0 | 79 | #define S3C_PA_IIC S5P6440_PA_IIC0 |
79 | #define S3C_PA_RTC S5P6440_PA_RTC | 80 | #define S3C_PA_RTC S5P6440_PA_RTC |
81 | #define S3C_PA_IIC1 S5P6440_PA_IIC1 | ||
80 | #define S3C_PA_WDT S5P6440_PA_WDT | 82 | #define S3C_PA_WDT S5P6440_PA_WDT |
81 | 83 | ||
82 | #define SAMSUNG_PA_ADC S5P6440_PA_ADC | 84 | #define SAMSUNG_PA_ADC S5P6440_PA_ADC |
diff --git a/arch/arm/mach-s5p6440/mach-smdk6440.c b/arch/arm/mach-s5p6440/mach-smdk6440.c index 142edd57a9da..8c83d8fb0162 100644 --- a/arch/arm/mach-s5p6440/mach-smdk6440.c +++ b/arch/arm/mach-s5p6440/mach-smdk6440.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/timer.h> | 15 | #include <linux/timer.h> |
16 | #include <linux/delay.h> | 16 | #include <linux/delay.h> |
17 | #include <linux/init.h> | 17 | #include <linux/init.h> |
18 | #include <linux/i2c.h> | ||
18 | #include <linux/serial_core.h> | 19 | #include <linux/serial_core.h> |
19 | #include <linux/platform_device.h> | 20 | #include <linux/platform_device.h> |
20 | #include <linux/io.h> | 21 | #include <linux/io.h> |
@@ -37,6 +38,7 @@ | |||
37 | #include <mach/regs-clock.h> | 38 | #include <mach/regs-clock.h> |
38 | #include <plat/devs.h> | 39 | #include <plat/devs.h> |
39 | #include <plat/cpu.h> | 40 | #include <plat/cpu.h> |
41 | #include <plat/iic.h> | ||
40 | #include <plat/pll.h> | 42 | #include <plat/pll.h> |
41 | #include <plat/adc.h> | 43 | #include <plat/adc.h> |
42 | #include <plat/ts.h> | 44 | #include <plat/ts.h> |
@@ -89,10 +91,20 @@ static struct platform_device *smdk6440_devices[] __initdata = { | |||
89 | &s5p6440_device_iis, | 91 | &s5p6440_device_iis, |
90 | &s3c_device_adc, | 92 | &s3c_device_adc, |
91 | &s3c_device_rtc, | 93 | &s3c_device_rtc, |
94 | &s3c_device_i2c0, | ||
95 | &s3c_device_i2c1, | ||
92 | &s3c_device_ts, | 96 | &s3c_device_ts, |
93 | &s3c_device_wdt, | 97 | &s3c_device_wdt, |
94 | }; | 98 | }; |
95 | 99 | ||
100 | static struct i2c_board_info smdk6440_i2c_devs0[] __initdata = { | ||
101 | { I2C_BOARD_INFO("24c08", 0x50), }, | ||
102 | }; | ||
103 | |||
104 | static struct i2c_board_info smdk6440_i2c_devs1[] __initdata = { | ||
105 | /* To be populated */ | ||
106 | }; | ||
107 | |||
96 | static struct s3c2410_ts_mach_info s3c_ts_platform __initdata = { | 108 | static struct s3c2410_ts_mach_info s3c_ts_platform __initdata = { |
97 | .delay = 10000, | 109 | .delay = 10000, |
98 | .presc = 49, | 110 | .presc = 49, |
@@ -110,6 +122,14 @@ static void __init smdk6440_machine_init(void) | |||
110 | { | 122 | { |
111 | s3c24xx_ts_set_platdata(&s3c_ts_platform); | 123 | s3c24xx_ts_set_platdata(&s3c_ts_platform); |
112 | 124 | ||
125 | /* I2C */ | ||
126 | s3c_i2c0_set_platdata(NULL); | ||
127 | s3c_i2c1_set_platdata(NULL); | ||
128 | i2c_register_board_info(0, smdk6440_i2c_devs0, | ||
129 | ARRAY_SIZE(smdk6440_i2c_devs0)); | ||
130 | i2c_register_board_info(1, smdk6440_i2c_devs1, | ||
131 | ARRAY_SIZE(smdk6440_i2c_devs1)); | ||
132 | |||
113 | platform_add_devices(smdk6440_devices, ARRAY_SIZE(smdk6440_devices)); | 133 | platform_add_devices(smdk6440_devices, ARRAY_SIZE(smdk6440_devices)); |
114 | } | 134 | } |
115 | 135 | ||
diff --git a/arch/arm/mach-s5p6440/setup-i2c0.c b/arch/arm/mach-s5p6440/setup-i2c0.c index 69e8a664aedb..2c99d14f7ac7 100644 --- a/arch/arm/mach-s5p6440/setup-i2c0.c +++ b/arch/arm/mach-s5p6440/setup-i2c0.c | |||
@@ -17,9 +17,14 @@ | |||
17 | 17 | ||
18 | struct platform_device; /* don't need the contents */ | 18 | struct platform_device; /* don't need the contents */ |
19 | 19 | ||
20 | #include <linux/gpio.h> | ||
21 | #include <plat/gpio-cfg.h> | ||
20 | #include <plat/iic.h> | 22 | #include <plat/iic.h> |
21 | 23 | ||
22 | void s3c_i2c0_cfg_gpio(struct platform_device *dev) | 24 | void s3c_i2c0_cfg_gpio(struct platform_device *dev) |
23 | { | 25 | { |
24 | /* Will be populated later */ | 26 | s3c_gpio_cfgpin(S5P6440_GPB(5), S3C_GPIO_SFN(2)); |
27 | s3c_gpio_setpull(S5P6440_GPB(5), S3C_GPIO_PULL_UP); | ||
28 | s3c_gpio_cfgpin(S5P6440_GPB(6), S3C_GPIO_SFN(2)); | ||
29 | s3c_gpio_setpull(S5P6440_GPB(6), S3C_GPIO_PULL_UP); | ||
25 | } | 30 | } |
diff --git a/arch/arm/mach-s5p6440/setup-i2c1.c b/arch/arm/mach-s5p6440/setup-i2c1.c new file mode 100644 index 000000000000..9a1537f786e0 --- /dev/null +++ b/arch/arm/mach-s5p6440/setup-i2c1.c | |||
@@ -0,0 +1,30 @@ | |||
1 | /* linux/arch/arm/mach-s5p6440/setup-i2c1.c | ||
2 | * | ||
3 | * Copyright (c) 2009 Samsung Electronics Co., Ltd. | ||
4 | * http://www.samsung.com/ | ||
5 | * | ||
6 | * I2C1 GPIO configuration. | ||
7 | * | ||
8 | * Based on plat-s3c64xx/setup-i2c0.c | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify | ||
11 | * it under the terms of the GNU General Public License version 2 as | ||
12 | * published by the Free Software Foundation. | ||
13 | */ | ||
14 | |||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/types.h> | ||
17 | #include <linux/gpio.h> | ||
18 | |||
19 | struct platform_device; /* don't need the contents */ | ||
20 | |||
21 | #include <plat/gpio-cfg.h> | ||
22 | #include <plat/iic.h> | ||
23 | |||
24 | void s3c_i2c1_cfg_gpio(struct platform_device *dev) | ||
25 | { | ||
26 | s3c_gpio_cfgpin(S5P6440_GPR(9), S3C_GPIO_SFN(6)); | ||
27 | s3c_gpio_setpull(S5P6440_GPR(9), S3C_GPIO_PULL_UP); | ||
28 | s3c_gpio_cfgpin(S5P6440_GPR(10), S3C_GPIO_SFN(6)); | ||
29 | s3c_gpio_setpull(S5P6440_GPR(10), S3C_GPIO_PULL_UP); | ||
30 | } | ||