blob: 570bc3b33d3dc6aa73207f9267150059b18e5340 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Álvaro Fernández Rojas8f240a32018-02-03 10:30:27 +01002/*
Álvaro Fernández Rojas55daf1c2019-08-30 11:54:27 +02003 * Copyright (C) 2018 Álvaro Fernández Rojas <noltari@gmail.com>
Álvaro Fernández Rojas8f240a32018-02-03 10:30:27 +01004 */
5
6#ifndef __CONFIG_BMIPS_BCM6362_H
7#define __CONFIG_BMIPS_BCM6362_H
8
Álvaro Fernández Rojas55daf1c2019-08-30 11:54:27 +02009#include <linux/sizes.h>
10
Álvaro Fernández Rojas8f240a32018-02-03 10:30:27 +010011/* CPU */
12#define CONFIG_SYS_MIPS_TIMER_FREQ 200000000
13
14/* RAM */
Álvaro Fernández Rojas8f240a32018-02-03 10:30:27 +010015#define CONFIG_SYS_SDRAM_BASE 0x80000000
16
Álvaro Fernández Rojasad7f6ed2018-02-04 21:10:18 +010017/* USB */
18#define CONFIG_EHCI_DESC_BIG_ENDIAN
19#define CONFIG_EHCI_MMIO_BIG_ENDIAN
20#define CONFIG_SYS_OHCI_SWAP_REG_ACCESS
21#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
22#define CONFIG_USB_OHCI_NEW
23
Álvaro Fernández Rojas8f240a32018-02-03 10:30:27 +010024/* U-Boot */
Álvaro Fernández Rojas55daf1c2019-08-30 11:54:27 +020025#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + SZ_1M
Álvaro Fernández Rojas8f240a32018-02-03 10:30:27 +010026
27#if defined(CONFIG_BMIPS_BOOT_RAM)
28#define CONFIG_SKIP_LOWLEVEL_INIT
Álvaro Fernández Rojas55daf1c2019-08-30 11:54:27 +020029#define CONFIG_SYS_INIT_SP_OFFSET SZ_8K
Álvaro Fernández Rojas8f240a32018-02-03 10:30:27 +010030#endif
31
32#endif /* __CONFIG_BMIPS_BCM6362_H */