1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * (C) Copyright 2010,2011 4 * NVIDIA Corporation <www.nvidia.com> 5 * 6 * (C) Copyright 2025 7 * Svyatoslav Ryhel <clamor95@gmail.com> 8 * 9 * Generic device header which can be used with SYS_CONFIG_NAME 10 * for any Tegra device (T20, T30, T114, T124, T186 or T210). 11 */ 12 13 #ifndef __CONFIG_H 14 #define __CONFIG_H 15 16 #include <linux/sizes.h> 17 18 #ifdef CONFIG_TEGRA20 19 #include "tegra20-common.h" 20 #elif CONFIG_TEGRA30 21 #include "tegra30-common.h" 22 #elif CONFIG_TEGRA114 23 #include "tegra114-common.h" 24 #elif CONFIG_TEGRA124 25 #include "tegra124-common.h" 26 #elif CONFIG_TEGRA186 27 #include "tegra186-common.h" 28 #elif CONFIG_TEGRA210 29 #include "tegra210-common.h" 30 #endif 31 32 #ifdef CONFIG_TEGRA_PRAM 33 #define CFG_PRAM CONFIG_TEGRA_PRAM_SIZE 34 #endif 35 36 #include "tegra-common-post.h" 37 38 #endif /* __CONFIG_H */ 39