mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
d9b6f58efd
In current Linux kernel Tegra DT files, 64-bit addresses are represented in unit addresses as a pair of comma-separated 32-bit values. Apparently this is no longer the correct representation for simple busses, and the unit address should be represented as a single 64-bit value. If this is changed in the DTs, arm/arm/mach-tegra/board2.c:ft_system_setup() will no longer be able to find and enable the GPU node, since it looks up the node by name. Fix that function to enable nodes based on their compatible value rather than their node name. This will work no matter what the node name is, i.e for DTs both before and after any rename operation. Cc: Thierry Reding <treding@nvidia.com> Cc: Alexandre Courbot <acourbot@nvidia.com> Signed-off-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Tom Warren <twarren@nvidia.com>
36 lines
620 B
C
36 lines
620 B
C
/*
|
|
* (C) Copyright 2015
|
|
* NVIDIA Corporation <www.nvidia.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_TEGRA_GPU_H
|
|
#define __ASM_ARCH_TEGRA_GPU_H
|
|
|
|
#if defined(CONFIG_TEGRA_GPU)
|
|
|
|
void tegra_gpu_config(void);
|
|
|
|
#else /* CONFIG_TEGRA_GPU */
|
|
|
|
static inline void tegra_gpu_config(void)
|
|
{
|
|
}
|
|
|
|
#endif /* CONFIG_TEGRA_GPU */
|
|
|
|
#if defined(CONFIG_OF_LIBFDT)
|
|
|
|
int tegra_gpu_enable_node(void *blob, const char *gpupath);
|
|
|
|
#else /* CONFIG_OF_LIBFDT */
|
|
|
|
static inline int tegra_gpu_enable_node(void *blob, const char *compat)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#endif /* CONFIG_OF_LIBFDT */
|
|
|
|
#endif /* __ASM_ARCH_TEGRA_GPU_H */
|