Lokesh Vutla | c7bfb85 | 2018-08-27 15:57:11 +0530 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
Nishanth Menon | eaa39c6 | 2023-11-01 15:56:03 -0500 | [diff] [blame] | 3 | * Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com/ |
Lokesh Vutla | c7bfb85 | 2018-08-27 15:57:11 +0530 | [diff] [blame] | 4 | * Lokesh Vutla <lokeshvutla@ti.com> |
| 5 | */ |
| 6 | #ifndef _ASM_ARCH_SPL_H_ |
| 7 | #define _ASM_ARCH_SPL_H_ |
| 8 | |
Andrew Davis | 1be5e97 | 2022-07-15 10:25:27 -0500 | [diff] [blame] | 9 | #ifdef CONFIG_SOC_K3_AM654 |
Lokesh Vutla | c7bfb85 | 2018-08-27 15:57:11 +0530 | [diff] [blame] | 10 | #include "am6_spl.h" |
| 11 | #endif |
Lokesh Vutla | 6edde29 | 2019-06-13 10:29:43 +0530 | [diff] [blame] | 12 | |
| 13 | #ifdef CONFIG_SOC_K3_J721E |
| 14 | #include "j721e_spl.h" |
| 15 | #endif |
Keerthy | 05d670e | 2021-04-23 11:27:33 -0500 | [diff] [blame] | 16 | |
David Huang | 6109820 | 2022-01-25 20:56:31 +0530 | [diff] [blame] | 17 | #ifdef CONFIG_SOC_K3_J721S2 |
| 18 | #include "j721s2_spl.h" |
| 19 | #endif |
| 20 | |
Keerthy | 05d670e | 2021-04-23 11:27:33 -0500 | [diff] [blame] | 21 | #ifdef CONFIG_SOC_K3_AM642 |
| 22 | #include "am64_spl.h" |
| 23 | #endif |
Suman Anna | 27fa412 | 2022-05-25 13:38:42 +0530 | [diff] [blame] | 24 | |
| 25 | #ifdef CONFIG_SOC_K3_AM625 |
| 26 | #include "am62_spl.h" |
| 27 | #endif |
| 28 | |
Bryan Brattlof | daa39a6 | 2022-11-03 19:13:55 -0500 | [diff] [blame] | 29 | #ifdef CONFIG_SOC_K3_AM62A7 |
| 30 | #include "am62a_spl.h" |
| 31 | #endif |
| 32 | |
Apurva Nandan | 67ebc30 | 2024-02-24 01:51:41 +0530 | [diff] [blame] | 33 | #ifdef CONFIG_SOC_K3_J784S4 |
| 34 | #include "j784s4_spl.h" |
| 35 | #endif |
| 36 | |
Bryan Brattlof | a4d5cc2 | 2024-03-12 15:20:24 -0500 | [diff] [blame] | 37 | #ifdef CONFIG_SOC_K3_AM62P5 |
| 38 | #include "am62p_spl.h" |
| 39 | #endif |
| 40 | |
Lokesh Vutla | c7bfb85 | 2018-08-27 15:57:11 +0530 | [diff] [blame] | 41 | #endif /* _ASM_ARCH_SPL_H_ */ |