Commit 93afa752 authored by Andrew Victor's avatar Andrew Victor Committed by Russell King

[ARM] 4355/2: AT91: SAM9260-EK and SAM9263-EK board updates

Various small changes for the Atmel AT91SAM9260-EK and AT91SAM9263-EK
boards.

SAM9260-EK:
  - Register I2C device.

SAM9263-EK:
  - Add platform_data and register MACB device.
    (Patch by Nicolas Ferre)
  - Add platform_data and register AC97 device.
    (Patch by Nicolas Ferre)
  - Register I2C device.
Signed-off-by: default avatarAndrew Victor <andrew@sanpeople.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 03abeac0
...@@ -104,9 +104,9 @@ static struct spi_board_info ek_spi_devices[] = { ...@@ -104,9 +104,9 @@ static struct spi_board_info ek_spi_devices[] = {
}, },
#endif #endif
#endif #endif
#if defined(CONFIG_SND_AT73C213) #if defined(CONFIG_SND_AT73C213) || defined(CONFIG_SND_AT73C213_MODULE)
{ /* AT73C213 DAC */ { /* AT73C213 DAC */
.modalias = "snd_at73c213", .modalias = "at73c213",
.chip_select = 0, .chip_select = 0,
.max_speed_hz = 10 * 1000 * 1000, .max_speed_hz = 10 * 1000 * 1000,
.bus_num = 1, .bus_num = 1,
...@@ -188,6 +188,8 @@ static void __init ek_board_init(void) ...@@ -188,6 +188,8 @@ static void __init ek_board_init(void)
at91_add_device_eth(&ek_macb_data); at91_add_device_eth(&ek_macb_data);
/* MMC */ /* MMC */
at91_add_device_mmc(0, &ek_mmc_data); at91_add_device_mmc(0, &ek_mmc_data);
/* I2C */
at91_add_device_i2c();
} }
MACHINE_START(AT91SAM9260EK, "Atmel AT91SAM9260-EK") MACHINE_START(AT91SAM9260EK, "Atmel AT91SAM9260-EK")
......
...@@ -156,6 +156,14 @@ static struct at91_mmc_data __initdata ek_mmc_data = { ...@@ -156,6 +156,14 @@ static struct at91_mmc_data __initdata ek_mmc_data = {
}; };
/*
* MACB Ethernet device
*/
static struct at91_eth_data __initdata ek_macb_data = {
.is_rmii = 1,
};
/* /*
* NAND flash * NAND flash
*/ */
...@@ -193,6 +201,14 @@ static struct at91_nand_data __initdata ek_nand_data = { ...@@ -193,6 +201,14 @@ static struct at91_nand_data __initdata ek_nand_data = {
}; };
/*
* AC97
*/
static struct atmel_ac97_data ek_ac97_data = {
.reset_pin = AT91_PIN_PA13,
};
static void __init ek_board_init(void) static void __init ek_board_init(void)
{ {
/* Serial */ /* Serial */
...@@ -208,8 +224,14 @@ static void __init ek_board_init(void) ...@@ -208,8 +224,14 @@ static void __init ek_board_init(void)
ek_add_device_ts(); ek_add_device_ts();
/* MMC */ /* MMC */
at91_add_device_mmc(1, &ek_mmc_data); at91_add_device_mmc(1, &ek_mmc_data);
/* Ethernet */
at91_add_device_eth(&ek_macb_data);
/* NAND */ /* NAND */
at91_add_device_nand(&ek_nand_data); at91_add_device_nand(&ek_nand_data);
/* I2C */
at91_add_device_i2c();
/* AC97 */
at91_add_device_ac97(&ek_ac97_data);
} }
MACHINE_START(AT91SAM9263EK, "Atmel AT91SAM9263-EK") MACHINE_START(AT91SAM9263EK, "Atmel AT91SAM9263-EK")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment