mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 07:04:28 +00:00
mips: bmips: add support for bcm6348 usb
Signed-off-by: Ãlvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
parent
bcb9b502d5
commit
d51aaf84cb
2 changed files with 25 additions and 0 deletions
|
@ -135,6 +135,26 @@
|
|||
status = "disabled";
|
||||
};
|
||||
|
||||
ohci: usb-controller@fffe1b00 {
|
||||
compatible = "brcm,bcm6348-ohci", "generic-ohci";
|
||||
reg = <0xfffe1b00 0x100>;
|
||||
phys = <&usbh>;
|
||||
big-endian;
|
||||
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
usbh: usb-phy@fffe1c00 {
|
||||
compatible = "brcm,bcm6348-usbh";
|
||||
reg = <0xfffe1c00 0x4>;
|
||||
#phy-cells = <0>;
|
||||
clocks = <&periph_clk BCM6348_CLK_USBH>;
|
||||
clock-names = "usbh";
|
||||
resets = <&periph_rst BCM6348_RST_USBH>;
|
||||
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
memory-controller@fffe2300 {
|
||||
compatible = "brcm,bcm6338-mc";
|
||||
reg = <0xfffe2300 0x38>;
|
||||
|
|
|
@ -14,6 +14,11 @@
|
|||
#define CONFIG_NR_DRAM_BANKS 1
|
||||
#define CONFIG_SYS_SDRAM_BASE 0x80000000
|
||||
|
||||
/* USB */
|
||||
#define CONFIG_SYS_OHCI_SWAP_REG_ACCESS
|
||||
#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
|
||||
#define CONFIG_USB_OHCI_NEW
|
||||
|
||||
/* U-Boot */
|
||||
#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + 0x100000
|
||||
|
||||
|
|
Loading…
Reference in a new issue