-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'mips-pull-2019-10-25' of git://git.denx.de/u-boot-mips
- bmips: add BCRM NAND support for BCM6368, BCM6328, BCM6362 and BCM63268 SoCs - bmips: various small fixes - mtmips: add new drivers for clock, reset-controller and pinctrl - mtmips: add support for high speed UART - mtmips: update/enhance drivers for SPI and ethernet - mtmips: add support for MMC
- Loading branch information
Showing
75 changed files
with
2,327 additions
and
545 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ dtb-$(CONFIG_TARGET_BOSTON) += img,boston.dtb | |
dtb-$(CONFIG_TARGET_MALTA) += mti,malta.dtb | ||
dtb-$(CONFIG_TARGET_PIC32MZDASK) += pic32mzda_sk.dtb | ||
dtb-$(CONFIG_TARGET_XILFPGA) += nexys4ddr.dtb | ||
dtb-$(CONFIG_BOARD_BROADCOM_BCM968380GERG) += brcm,bcm968380gerg.dtb | ||
dtb-$(CONFIG_BOARD_COMTREND_AR5315U) += comtrend,ar-5315u.dtb | ||
dtb-$(CONFIG_BOARD_COMTREND_AR5387UN) += comtrend,ar-5387un.dtb | ||
dtb-$(CONFIG_BOARD_COMTREND_CT5361) += comtrend,ct-5361.dtb | ||
|
@@ -19,10 +20,9 @@ dtb-$(CONFIG_BOARD_HUAWEI_HG556A) += huawei,hg556a.dtb | |
dtb-$(CONFIG_BOARD_NETGEAR_CG3100D) += netgear,cg3100d.dtb | ||
dtb-$(CONFIG_BOARD_NETGEAR_DGND3700V2) += netgear,dgnd3700v2.dtb | ||
dtb-$(CONFIG_BOARD_SAGEM_FAST1704) += sagem,[email protected] | ||
dtb-$(CONFIG_BOARD_SFR_NB4_SER) += sfr,nb4-ser.dtb | ||
dtb-$(CONFIG_BOARD_TPLINK_WDR4300) += tplink_wdr4300.dtb | ||
dtb-$(CONFIG_TARGET_JZ4780_CI20) += ci20.dtb | ||
dtb-$(CONFIG_SOC_BMIPS_BCM6358) += sfr,nb4-ser.dtb | ||
dtb-$(CONFIG_SOC_BMIPS_BCM6838) += brcm,bcm968380gerg.dtb | ||
dtb-$(CONFIG_SOC_LUTON) += luton_pcb090.dtb luton_pcb091.dtb | ||
dtb-$(CONFIG_SOC_OCELOT) += ocelot_pcb120.dtb ocelot_pcb123.dtb | ||
dtb-$(CONFIG_SOC_JR2) += jr2_pcb110.dtb jr2_pcb111.dtb serval2_pcb112.dtb | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: GPL-2.0+ | ||
/* | ||
* Copyright (C) 2018 Ãlvaro Fernández Rojas <[email protected]> | ||
* Copyright (C) 2018 Álvaro Fernández Rojas <[email protected]> | ||
*/ | ||
|
||
#include <dt-bindings/clock/bcm6362-clock.h> | ||
|
@@ -135,6 +135,24 @@ | |
status = "disabled"; | ||
}; | ||
|
||
nand: nand-controller@10000200 { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
compatible = "brcm,nand-bcm6368", | ||
"brcm,brcmnand-v2.2", | ||
"brcm,brcmnand"; | ||
reg-names = "nand", | ||
"nand-cache", | ||
"nand-int-base"; | ||
reg = <0x10000200 0x180>, | ||
<0x10000600 0x200>, | ||
<0x100000b0 0x10>; | ||
clocks = <&periph_clk BCM6362_CLK_NAND>; | ||
clock-names = "nand"; | ||
|
||
status = "disabled"; | ||
}; | ||
|
||
lsspi: spi@10000800 { | ||
compatible = "brcm,bcm6358-spi"; | ||
reg = <0x10000800 0x70c>; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.