+static void __init easy_setup_bga(void)
+{
+ gpio_request(ADM5120_GPIO_PIN5, NULL); /* for flash A20 line */
+ gpio_direction_output(ADM5120_GPIO_PIN5, 0);
+
+ /* setup data for flash0 device */
+ adm5120_flash0_data.switch_bank = switch_bank_gpio5;
+ adm5120_flash0_data.nr_parts = ARRAY_SIZE(easy_partitions);
+ adm5120_flash0_data.parts = easy_partitions;
+
+ /* TODO: setup mac addresses */
+}
+
+static struct adm5120_board easy5120pata_board __initdata = {
+ .mach_type = MACH_ADM5120_EASY5120PATA,
+ .name = "Infineon EASY 5120P-ATA Reference Board",
+ .board_setup = easy_setup_pqfp,
+ .eth_num_ports = 6,
+ .num_devices = ARRAY_SIZE(easy5120pata_devices),
+ .devices = easy5120pata_devices,
+};
+
+static struct adm5120_board easy5120rt_board __initdata = {
+ .mach_type = MACH_ADM5120_EASY5120RT,
+ .name = "Infineon EASY 5120-RT Reference Board",
+ .board_setup = easy_setup_bga,
+ .eth_num_ports = 5,
+ .num_devices = ARRAY_SIZE(easy5120rt_devices),
+ .devices = easy5120rt_devices,
+};
+
+static struct adm5120_board easy5120wvoip_board __initdata = {
+ .mach_type = MACH_ADM5120_EASY5120WVOIP,
+ .name = "Infineon EASY 5120-WVoIP Reference Board",
+ .board_setup = easy_setup_bga,
+ .eth_num_ports = 6,
+ .num_devices = ARRAY_SIZE(easy5120wvoip_devices),
+ .devices = easy5120wvoip_devices,
+};
+