]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
8f240a3b | 2 | /* |
55daf1c4 | 3 | * Copyright (C) 2018 Álvaro Fernández Rojas <[email protected]> |
8f240a3b ÁFR |
4 | */ |
5 | ||
6 | #ifndef __CONFIG_BMIPS_BCM6362_H | |
7 | #define __CONFIG_BMIPS_BCM6362_H | |
8 | ||
55daf1c4 ÁFR |
9 | #include <linux/sizes.h> |
10 | ||
8f240a3b ÁFR |
11 | /* CPU */ |
12 | #define CONFIG_SYS_MIPS_TIMER_FREQ 200000000 | |
13 | ||
14 | /* RAM */ | |
8f240a3b ÁFR |
15 | #define CONFIG_SYS_SDRAM_BASE 0x80000000 |
16 | ||
ad7f6ed4 | 17 | /* USB */ |
ad7f6ed4 ÁFR |
18 | #define CONFIG_SYS_OHCI_SWAP_REG_ACCESS |
19 | #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2 | |
56ed625b | 20 | #if defined(CONFIG_USB_OHCI_HCD) |
ad7f6ed4 | 21 | #define CONFIG_USB_OHCI_NEW |
56ed625b | 22 | #endif /* CONFIG_USB_OHCI_HCD */ |
ad7f6ed4 | 23 | |
8f240a3b | 24 | /* U-Boot */ |
8f240a3b ÁFR |
25 | |
26 | #if defined(CONFIG_BMIPS_BOOT_RAM) | |
55daf1c4 | 27 | #define CONFIG_SYS_INIT_SP_OFFSET SZ_8K |
8f240a3b ÁFR |
28 | #endif |
29 | ||
30 | #endif /* __CONFIG_BMIPS_BCM6362_H */ |