Commit fda4bd9b authored by Anton Vorontsov's avatar Anton Vorontsov Committed by Benjamin Herrenschmidt

powerpc/83xx: Add support for MPC8377E-WLAN boards

MPC8377E-WLAN are basically RDB boards except:

- RAM extended to 512 MB;
- NAND flash removed, NOR flash extended to 64 MB;
- Vitesse VSC7385 5-port switch removed, RTL8211B PHY added;
- Power management MCU removed;
- PCI slot removed, another mini-PCI slot added (IRQ routing changed);
- USB3300 PHY's ID pin grounded, thus USB port is host-only.
Signed-off-by: default avatarAnton Vorontsov <avorontsov@ru.mvista.com>
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent 3475dd8a
This diff is collapsed.
...@@ -75,11 +75,11 @@ config MPC837x_MDS ...@@ -75,11 +75,11 @@ config MPC837x_MDS
This option enables support for the MPC837x MDS Processor Board. This option enables support for the MPC837x MDS Processor Board.
config MPC837x_RDB config MPC837x_RDB
bool "Freescale MPC837x RDB" bool "Freescale MPC837x RDB/WLAN"
select DEFAULT_UIMAGE select DEFAULT_UIMAGE
select PPC_MPC837x select PPC_MPC837x
help help
This option enables support for the MPC837x RDB Board. This option enables support for the MPC837x RDB and WLAN Boards.
config SBC834x config SBC834x
bool "Wind River SBC834x" bool "Wind River SBC834x"
......
...@@ -86,11 +86,12 @@ static int __init mpc837x_rdb_probe(void) ...@@ -86,11 +86,12 @@ static int __init mpc837x_rdb_probe(void)
return of_flat_dt_is_compatible(root, "fsl,mpc8377rdb") || return of_flat_dt_is_compatible(root, "fsl,mpc8377rdb") ||
of_flat_dt_is_compatible(root, "fsl,mpc8378rdb") || of_flat_dt_is_compatible(root, "fsl,mpc8378rdb") ||
of_flat_dt_is_compatible(root, "fsl,mpc8379rdb"); of_flat_dt_is_compatible(root, "fsl,mpc8379rdb") ||
of_flat_dt_is_compatible(root, "fsl,mpc8377wlan");
} }
define_machine(mpc837x_rdb) { define_machine(mpc837x_rdb) {
.name = "MPC837x RDB", .name = "MPC837x RDB/WLAN",
.probe = mpc837x_rdb_probe, .probe = mpc837x_rdb_probe,
.setup_arch = mpc837x_rdb_setup_arch, .setup_arch = mpc837x_rdb_setup_arch,
.init_IRQ = mpc837x_rdb_init_IRQ, .init_IRQ = mpc837x_rdb_init_IRQ,
......
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