diff options
author | Jonas Larsson <jonas.larsson@martinsson.se> | 2009-03-30 11:04:53 -0400 |
---|---|---|
committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2009-03-30 11:17:58 -0400 |
commit | a6b6b5ff8f31960f760dd849beb70e1ae8ddc0e2 (patch) | |
tree | 0c7679a44a3e59d2de16e43d8fd7b3ae04e0f707 /arch/avr32 | |
parent | 2f47c8c5556e91f309e24162263ebacff6973007 (diff) |
Add RTC support for Merisc boards
This patch adds RTC support for the Merisc boards.
Signed-off-by: Jonas Larsson <jonas.larsson@martinsson.se>
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/boards/merisc/setup.c | 8 | ||||
-rw-r--r-- | arch/avr32/configs/merisc_defconfig | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/arch/avr32/boards/merisc/setup.c b/arch/avr32/boards/merisc/setup.c index 2dbca46337af..58acdb4fc9b3 100644 --- a/arch/avr32/boards/merisc/setup.c +++ b/arch/avr32/boards/merisc/setup.c | |||
@@ -160,6 +160,12 @@ static struct platform_device i2c_gpio_device = { | |||
160 | }, | 160 | }, |
161 | }; | 161 | }; |
162 | 162 | ||
163 | static struct i2c_board_info __initdata i2c_info[] = { | ||
164 | { | ||
165 | I2C_BOARD_INFO("pcf8563", 0x51) | ||
166 | }, | ||
167 | }; | ||
168 | |||
163 | #ifdef CONFIG_LEDS_ATMEL_PWM | 169 | #ifdef CONFIG_LEDS_ATMEL_PWM |
164 | static struct gpio_led stk_pwm_led[] = { | 170 | static struct gpio_led stk_pwm_led[] = { |
165 | { | 171 | { |
@@ -284,6 +290,8 @@ static int __init merisc_init(void) | |||
284 | AT32_GPIOF_MULTIDRV | AT32_GPIOF_OUTPUT | AT32_GPIOF_HIGH); | 290 | AT32_GPIOF_MULTIDRV | AT32_GPIOF_OUTPUT | AT32_GPIOF_HIGH); |
285 | platform_device_register(&i2c_gpio_device); | 291 | platform_device_register(&i2c_gpio_device); |
286 | 292 | ||
293 | i2c_register_board_info(0, i2c_info, ARRAY_SIZE(i2c_info)); | ||
294 | |||
287 | return 0; | 295 | return 0; |
288 | } | 296 | } |
289 | postcore_initcall(merisc_init); | 297 | postcore_initcall(merisc_init); |
diff --git a/arch/avr32/configs/merisc_defconfig b/arch/avr32/configs/merisc_defconfig index cd51459ecd97..41554db4877f 100644 --- a/arch/avr32/configs/merisc_defconfig +++ b/arch/avr32/configs/merisc_defconfig | |||
@@ -887,7 +887,7 @@ CONFIG_RTC_INTF_DEV=y | |||
887 | # CONFIG_RTC_DRV_RS5C372 is not set | 887 | # CONFIG_RTC_DRV_RS5C372 is not set |
888 | # CONFIG_RTC_DRV_ISL1208 is not set | 888 | # CONFIG_RTC_DRV_ISL1208 is not set |
889 | # CONFIG_RTC_DRV_X1205 is not set | 889 | # CONFIG_RTC_DRV_X1205 is not set |
890 | # CONFIG_RTC_DRV_PCF8563 is not set | 890 | CONFIG_RTC_DRV_PCF8563=y |
891 | # CONFIG_RTC_DRV_PCF8583 is not set | 891 | # CONFIG_RTC_DRV_PCF8583 is not set |
892 | # CONFIG_RTC_DRV_M41T80 is not set | 892 | # CONFIG_RTC_DRV_M41T80 is not set |
893 | # CONFIG_RTC_DRV_S35390A is not set | 893 | # CONFIG_RTC_DRV_S35390A is not set |