diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-07-03 06:24:41 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-07-03 11:51:28 -0400 |
commit | 042cf0f21feebc07b70bab9176c6be59f5fcdbc5 (patch) | |
tree | 5090fb4acb723cdae22340d5584316b5d2c3df13 /arch/arm/mach-s3c2410/mach-bast.c | |
parent | f337422147ca28fad0ff18d67a82c8b475872109 (diff) |
[ARM] BAST: Add i2c device list on Simtec Bast
Add i2c boardinfo for the connected i2c devices on the
Simtec Bast.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c2410/mach-bast.c')
-rw-r--r-- | arch/arm/mach-s3c2410/mach-bast.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2410/mach-bast.c b/arch/arm/mach-s3c2410/mach-bast.c index 2a512e863141..965f27129707 100644 --- a/arch/arm/mach-s3c2410/mach-bast.c +++ b/arch/arm/mach-s3c2410/mach-bast.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* linux/arch/arm/mach-s3c2410/mach-bast.c | 1 | /* linux/arch/arm/mach-s3c2410/mach-bast.c |
2 | * | 2 | * |
3 | * Copyright (c) 2003-2005 Simtec Electronics | 3 | * Copyright (c) 2003-2005,2008 Simtec Electronics |
4 | * Ben Dooks <ben@simtec.co.uk> | 4 | * Ben Dooks <ben@simtec.co.uk> |
5 | * | 5 | * |
6 | * http://www.simtec.co.uk/products/EB2410ITX/ | 6 | * http://www.simtec.co.uk/products/EB2410ITX/ |
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/platform_device.h> | 21 | #include <linux/platform_device.h> |
22 | #include <linux/dm9000.h> | 22 | #include <linux/dm9000.h> |
23 | #include <linux/ata_platform.h> | 23 | #include <linux/ata_platform.h> |
24 | #include <linux/i2c.h> | ||
24 | 25 | ||
25 | #include <net/ax88796.h> | 26 | #include <net/ax88796.h> |
26 | 27 | ||
@@ -534,6 +535,17 @@ static struct s3c2410fb_mach_info __initdata bast_fb_info = { | |||
534 | .default_display = 1, | 535 | .default_display = 1, |
535 | }; | 536 | }; |
536 | 537 | ||
538 | /* I2C devices fitted. */ | ||
539 | |||
540 | static struct i2c_board_info bast_i2c_devs[] __initdata = { | ||
541 | { | ||
542 | I2C_BOARD_INFO("tlv320aic23", 0x1a), | ||
543 | }, { | ||
544 | I2C_BOARD_INFO("simtec-pmu", 0x6b), | ||
545 | }, { | ||
546 | I2C_BOARD_INFO("ch7013", 0x75), | ||
547 | }, | ||
548 | }; | ||
537 | 549 | ||
538 | /* Standard BAST devices */ | 550 | /* Standard BAST devices */ |
539 | 551 | ||
@@ -593,6 +605,9 @@ static void __init bast_init(void) | |||
593 | s3c24xx_fb_set_platdata(&bast_fb_info); | 605 | s3c24xx_fb_set_platdata(&bast_fb_info); |
594 | platform_add_devices(bast_devices, ARRAY_SIZE(bast_devices)); | 606 | platform_add_devices(bast_devices, ARRAY_SIZE(bast_devices)); |
595 | 607 | ||
608 | i2c_register_board_info(0, bast_i2c_devs, | ||
609 | ARRAY_SIZE(bast_i2c_devs)); | ||
610 | |||
596 | nor_simtec_init(); | 611 | nor_simtec_init(); |
597 | } | 612 | } |
598 | 613 | ||