Nishanth Menon | ac205d8 | 2023-11-04 03:11:01 -0500 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
| 2 | # |
| 3 | # Copyright (C) 2022-2023 Texas Instruments Incorporated - https://www.ti.com/ |
| 4 | # Copyright (C) 2022-2023 Jason Kridner, BeagleBoard.org Foundation |
| 5 | # Copyright (C) 2022-2023 Robert Nelson, BeagleBoard.org Foundation |
| 6 | # |
| 7 | |
| 8 | choice |
| 9 | prompt "BeagleBoard.org J721E/TDA4VM based BeagleBone AI-64 board" |
| 10 | optional |
| 11 | |
| 12 | config TARGET_J721E_A72_BEAGLEBONEAI64 |
| 13 | bool "BeagleBoard.org J721E BeagleBone AI-64 running on A72" |
| 14 | select ARM64 |
| 15 | select SYS_DISABLE_DCACHE_OPS |
| 16 | select BINMAN |
| 17 | |
| 18 | config TARGET_J721E_R5_BEAGLEBONEAI64 |
| 19 | bool "BeagleBoard.org J721E BeagleBone AI-64 running on R5" |
| 20 | select CPU_V7R |
| 21 | select SYS_THUMB_BUILD |
| 22 | select K3_LOAD_SYSFW |
| 23 | select RAM |
| 24 | select SPL_RAM |
| 25 | select K3_DDRSS |
| 26 | select BINMAN |
| 27 | imply SYS_K3_SPL_ATF |
| 28 | |
| 29 | endchoice |
| 30 | |
| 31 | if TARGET_J721E_A72_BEAGLEBONEAI64 |
| 32 | |
| 33 | config SYS_BOARD |
| 34 | default "beagleboneai64" |
| 35 | |
| 36 | config SYS_VENDOR |
| 37 | default "beagle" |
| 38 | |
| 39 | config SYS_CONFIG_NAME |
Jonathan Humphreys | c4b5f82 | 2024-06-14 11:35:46 -0500 | [diff] [blame] | 40 | default "beagleboneai64" |
Nishanth Menon | ac205d8 | 2023-11-04 03:11:01 -0500 | [diff] [blame] | 41 | |
| 42 | source "board/ti/common/Kconfig" |
| 43 | |
| 44 | endif |
| 45 | |
| 46 | if TARGET_J721E_R5_BEAGLEBONEAI64 |
| 47 | |
| 48 | config SYS_BOARD |
| 49 | default "beagleboneai64" |
| 50 | |
| 51 | config SYS_VENDOR |
| 52 | default "beagle" |
| 53 | |
| 54 | config SYS_CONFIG_NAME |
Jonathan Humphreys | c4b5f82 | 2024-06-14 11:35:46 -0500 | [diff] [blame] | 55 | default "beagleboneai64" |
Nishanth Menon | ac205d8 | 2023-11-04 03:11:01 -0500 | [diff] [blame] | 56 | |
| 57 | source "board/ti/common/Kconfig" |
| 58 | |
| 59 | endif |