Aaron Williams | b2ea818 | 2020-06-30 12:08:56 +0200 | [diff] [blame] | 1 | menu "Octeon platforms" |
| 2 | depends on ARCH_OCTEON |
| 3 | |
| 4 | config SYS_SOC |
| 5 | string |
| 6 | default "octeon" |
| 7 | |
| 8 | config OCTEON_CN7XXX |
| 9 | bool "Octeon CN7XXX SoC" |
| 10 | |
| 11 | config OCTEON_CN70XX |
| 12 | bool "Octeon CN70XX SoC" |
| 13 | select OCTEON_CN7XXX |
| 14 | |
| 15 | config OCTEON_CN73XX |
| 16 | bool "Octeon CN73XX SoC" |
| 17 | select OCTEON_CN7XXX |
| 18 | |
| 19 | config OCTEON_CN78XX |
| 20 | bool "Octeon CN78XX SoC" |
| 21 | select OCTEON_CN7XXX |
| 22 | |
| 23 | choice |
| 24 | prompt "Octeon MIPS family select" |
| 25 | |
| 26 | config SOC_OCTEON3 |
| 27 | bool "Octeon III family" |
| 28 | help |
| 29 | This selects the Octeon III SoC family CN70xx, CN73XX, CN78xx |
| 30 | and CNF75XX. |
| 31 | |
| 32 | endchoice |
| 33 | |
Stefan Roese | a6f2ea4 | 2020-06-30 12:08:58 +0200 | [diff] [blame] | 34 | choice |
| 35 | prompt "Octeon 3 board select" |
| 36 | default TARGET_OCTEON_EBB7304 |
| 37 | |
| 38 | config TARGET_OCTEON_EBB7304 |
| 39 | bool "Marvell Octeon EBB7304" |
| 40 | select OCTEON_CN73XX |
| 41 | help |
| 42 | Choose this for the Octeon EBB7304 board |
| 43 | |
Stefan Roese | ede2c66 | 2021-04-07 09:12:38 +0200 | [diff] [blame] | 44 | config TARGET_OCTEON_NIC23 |
| 45 | bool "Marvell Octeon NIC23" |
| 46 | select OCTEON_CN73XX |
| 47 | help |
| 48 | Choose this for the Octeon NIC23 board |
| 49 | |
Stefan Roese | a6f2ea4 | 2020-06-30 12:08:58 +0200 | [diff] [blame] | 50 | endchoice |
| 51 | |
Aaron Williams | b2ea818 | 2020-06-30 12:08:56 +0200 | [diff] [blame] | 52 | config SYS_DCACHE_SIZE |
| 53 | default 32768 |
| 54 | |
| 55 | config SYS_DCACHE_LINE_SIZE |
| 56 | default 128 |
| 57 | |
| 58 | config SYS_ICACHE_SIZE |
| 59 | default 79872 |
| 60 | |
| 61 | config SYS_ICACHE_LINE_SIZE |
| 62 | default 128 |
| 63 | |
Stefan Roese | e4fa672 | 2020-12-11 17:06:08 +0100 | [diff] [blame] | 64 | config SYS_PCI_64BIT |
| 65 | bool |
| 66 | default y |
| 67 | |
Stefan Roese | a6f2ea4 | 2020-06-30 12:08:58 +0200 | [diff] [blame] | 68 | source "board/Marvell/octeon_ebb7304/Kconfig" |
Stefan Roese | ede2c66 | 2021-04-07 09:12:38 +0200 | [diff] [blame] | 69 | source "board/Marvell/octeon_nic23/Kconfig" |
Stefan Roese | a6f2ea4 | 2020-06-30 12:08:58 +0200 | [diff] [blame] | 70 | |
Aaron Williams | b2ea818 | 2020-06-30 12:08:56 +0200 | [diff] [blame] | 71 | endmenu |