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/boards | |
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/boards')
-rw-r--r-- | arch/avr32/boards/merisc/setup.c | 8 |
1 files changed, 8 insertions, 0 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); |