mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 07:31:15 +00:00
board: gateworks: venice: add fixup for GW73xx-F+
GW73xx-F board revision switched back to the original PCIe switch due to part availability. Signed-off-by: Tim Harvey <tharvey@gateworks.com> Reviewed-by: Fabio Estevam <festevam@gmail.com>
This commit is contained in:
parent
3d91bc90de
commit
ad3a4f91e7
1 changed files with 3 additions and 3 deletions
|
@ -238,12 +238,12 @@ int ft_board_setup(void *fdt, struct bd_info *bd)
|
||||||
if (!strncmp(base_model, "GW73", 4)) {
|
if (!strncmp(base_model, "GW73", 4)) {
|
||||||
pcbrev = get_pcb_rev(base_model);
|
pcbrev = get_pcb_rev(base_model);
|
||||||
|
|
||||||
if (pcbrev > 'B') {
|
if (pcbrev > 'B' && pcbrev < 'E') {
|
||||||
printf("adjusting dt for %s\n", base_model);
|
printf("adjusting dt for %s\n", base_model);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* revC replaced PCIe 5-port switch with 4-port
|
* revC/D/E has PCIe 4-port switch which changes
|
||||||
* which changed ethernet1 PCIe GbE
|
* ethernet1 PCIe GbE:
|
||||||
* from: pcie@0,0/pcie@1,0/pcie@2,4/pcie@6.0
|
* from: pcie@0,0/pcie@1,0/pcie@2,4/pcie@6.0
|
||||||
* to: pcie@0,0/pcie@1,0/pcie@2,3/pcie@5.0
|
* to: pcie@0,0/pcie@1,0/pcie@2,3/pcie@5.0
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue