2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2011-01-27 10:58:05 +00:00
|
|
|
/*
|
2015-03-04 23:36:00 +00:00
|
|
|
* (C) Copyright 2010-2015
|
2011-01-27 10:58:05 +00:00
|
|
|
* NVIDIA Corporation <www.nvidia.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2015-11-19 13:48:11 +00:00
|
|
|
#include <dm.h>
|
|
|
|
#include <ns16550.h>
|
2015-05-13 13:02:29 +00:00
|
|
|
#include <spl.h>
|
2011-01-27 10:58:05 +00:00
|
|
|
#include <asm/io.h>
|
2019-04-15 09:32:18 +00:00
|
|
|
#if IS_ENABLED(CONFIG_TEGRA_CLKRST)
|
2011-11-28 15:04:39 +00:00
|
|
|
#include <asm/arch/clock.h>
|
2019-04-15 09:32:18 +00:00
|
|
|
#endif
|
2019-04-15 09:32:21 +00:00
|
|
|
#if IS_ENABLED(CONFIG_TEGRA_PINCTRL)
|
2011-11-28 15:04:39 +00:00
|
|
|
#include <asm/arch/funcmux.h>
|
2019-04-15 09:32:21 +00:00
|
|
|
#endif
|
2019-04-15 09:32:20 +00:00
|
|
|
#if IS_ENABLED(CONFIG_TEGRA_MC)
|
2014-10-10 21:32:32 +00:00
|
|
|
#include <asm/arch/mc.h>
|
2019-04-15 09:32:20 +00:00
|
|
|
#endif
|
2012-09-19 22:50:56 +00:00
|
|
|
#include <asm/arch/tegra.h>
|
2015-01-19 23:25:52 +00:00
|
|
|
#include <asm/arch-tegra/ap.h>
|
2012-09-29 10:02:08 +00:00
|
|
|
#include <asm/arch-tegra/board.h>
|
2019-04-15 09:32:28 +00:00
|
|
|
#include <asm/arch-tegra/cboot.h>
|
2012-09-19 22:50:56 +00:00
|
|
|
#include <asm/arch-tegra/pmc.h>
|
|
|
|
#include <asm/arch-tegra/sys_proto.h>
|
|
|
|
#include <asm/arch-tegra/warmboot.h>
|
2011-01-27 10:58:05 +00:00
|
|
|
|
2015-07-08 15:05:35 +00:00
|
|
|
void save_boot_params_ret(void);
|
|
|
|
|
2011-01-27 10:58:05 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2011-11-28 15:04:39 +00:00
|
|
|
enum {
|
|
|
|
/* UARTs which we can enable */
|
|
|
|
UARTA = 1 << 0,
|
|
|
|
UARTB = 1 << 1,
|
2013-01-28 13:32:10 +00:00
|
|
|
UARTC = 1 << 2,
|
2011-11-28 15:04:39 +00:00
|
|
|
UARTD = 1 << 3,
|
2013-01-28 13:32:10 +00:00
|
|
|
UARTE = 1 << 4,
|
|
|
|
UART_COUNT = 5,
|
2011-11-28 15:04:39 +00:00
|
|
|
};
|
|
|
|
|
2015-05-13 13:02:29 +00:00
|
|
|
static bool from_spl __attribute__ ((section(".data")));
|
|
|
|
|
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2019-04-15 09:32:23 +00:00
|
|
|
void save_boot_params(unsigned long r0, unsigned long r1, unsigned long r2,
|
|
|
|
unsigned long r3)
|
2015-05-13 13:02:29 +00:00
|
|
|
{
|
|
|
|
from_spl = r0 != UBOOT_NOT_LOADED_FROM_SPL;
|
2019-04-15 09:32:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The logic for this is somewhat indirect. The purpose of the marker
|
|
|
|
* (UBOOT_NOT_LOADED_FROM_SPL) is in fact used to determine if U-Boot
|
|
|
|
* was loaded from a read-only instance of itself, which is something
|
|
|
|
* that can happen in secure boot setups. So basically the presence
|
|
|
|
* of the marker is an indication that U-Boot was loaded by one such
|
|
|
|
* special variant of U-Boot. Conversely, the absence of the marker
|
|
|
|
* indicates that this instance of U-Boot was loaded by something
|
|
|
|
* other than a special U-Boot. This could be SPL, but it could just
|
|
|
|
* as well be one of any number of other first stage bootloaders.
|
|
|
|
*/
|
|
|
|
if (from_spl)
|
|
|
|
cboot_save_boot_params(r0, r1, r2, r3);
|
|
|
|
|
2015-05-13 13:02:29 +00:00
|
|
|
save_boot_params_ret();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bool spl_was_boot_source(void)
|
|
|
|
{
|
|
|
|
return from_spl;
|
|
|
|
}
|
|
|
|
|
2015-01-19 23:25:52 +00:00
|
|
|
#if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE)
|
|
|
|
#if !defined(CONFIG_TEGRA124)
|
|
|
|
#error tegra_cpu_is_non_secure has only been validated on Tegra124
|
|
|
|
#endif
|
|
|
|
bool tegra_cpu_is_non_secure(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* This register reads 0xffffffff in non-secure mode. This register
|
|
|
|
* only implements bits 31:20, so the lower bits will always read 0 in
|
|
|
|
* secure mode. Thus, the lower bits are an indicator for secure vs.
|
|
|
|
* non-secure mode.
|
|
|
|
*/
|
|
|
|
struct mc_ctlr *mc = (struct mc_ctlr *)NV_PA_MC_BASE;
|
|
|
|
uint32_t mc_s_cfg0 = readl(&mc->mc_security_cfg0);
|
|
|
|
return (mc_s_cfg0 & 1) == 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-04-15 09:32:20 +00:00
|
|
|
#if IS_ENABLED(CONFIG_TEGRA_MC)
|
2014-07-02 20:12:30 +00:00
|
|
|
/* Read the RAM size directly from the memory controller */
|
ARM: tegra: query_sdram_size() cleanup
The return value of query_sdram_size() is assigned directly to
gd->ram_size in dram_init(). Adjust the return type to match the field
it's assigned to. This has the beneficial effect that on 64-bit systems,
the return value can correctly represent large RAM sizes over 4GB.
For similar reasons, change the type of variable size_bytes in the same
way.
query_sdram_size() would previously clip the detected RAM size to at most
just under 4GB in all cases, since on 32-bit systems, larger values could
not be represented. Disable this feature on 64-bit systems since the
representation restriction does not exist.
On 64-bit systems, never call get_ram_size() to validate the detected/
calculated RAM size. On any system with a secure OS/... carve-out, RAM
may not have a single contiguous usable area, and this can confuse
get_ram_size(). Ideally, we'd make this call conditional upon some other
flag that indicates specifically that a carve-out is actually in use. At
present, building for a 64-bit system is the best indication we have of
this fact. In fact, the call to get_ram_size() is not useful by the time
U-Boot runs on any system, since U-Boot (and potentially much other early
boot software) always runs from RAM on Tegra, so any mistakes in memory
controller register programming will already have manifested themselves
and prevented U-Boot from running to this point. In the future, we may
simply delete the call to get_ram_size() in all cases.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
2015-08-07 22:12:44 +00:00
|
|
|
static phys_size_t query_sdram_size(void)
|
2014-07-02 20:12:30 +00:00
|
|
|
{
|
|
|
|
struct mc_ctlr *const mc = (struct mc_ctlr *)NV_PA_MC_BASE;
|
ARM: tegra: query_sdram_size() cleanup
The return value of query_sdram_size() is assigned directly to
gd->ram_size in dram_init(). Adjust the return type to match the field
it's assigned to. This has the beneficial effect that on 64-bit systems,
the return value can correctly represent large RAM sizes over 4GB.
For similar reasons, change the type of variable size_bytes in the same
way.
query_sdram_size() would previously clip the detected RAM size to at most
just under 4GB in all cases, since on 32-bit systems, larger values could
not be represented. Disable this feature on 64-bit systems since the
representation restriction does not exist.
On 64-bit systems, never call get_ram_size() to validate the detected/
calculated RAM size. On any system with a secure OS/... carve-out, RAM
may not have a single contiguous usable area, and this can confuse
get_ram_size(). Ideally, we'd make this call conditional upon some other
flag that indicates specifically that a carve-out is actually in use. At
present, building for a 64-bit system is the best indication we have of
this fact. In fact, the call to get_ram_size() is not useful by the time
U-Boot runs on any system, since U-Boot (and potentially much other early
boot software) always runs from RAM on Tegra, so any mistakes in memory
controller register programming will already have manifested themselves
and prevented U-Boot from running to this point. In the future, we may
simply delete the call to get_ram_size() in all cases.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
2015-08-07 22:12:44 +00:00
|
|
|
u32 emem_cfg;
|
|
|
|
phys_size_t size_bytes;
|
2014-07-02 20:12:30 +00:00
|
|
|
|
2014-12-23 17:34:50 +00:00
|
|
|
emem_cfg = readl(&mc->mc_emem_cfg);
|
2014-10-10 21:32:32 +00:00
|
|
|
#if defined(CONFIG_TEGRA20)
|
2014-12-23 17:34:50 +00:00
|
|
|
debug("mc->mc_emem_cfg (MEM_SIZE_KB) = 0x%08x\n", emem_cfg);
|
|
|
|
size_bytes = get_ram_size((void *)PHYS_SDRAM_1, emem_cfg * 1024);
|
2014-10-10 21:32:32 +00:00
|
|
|
#else
|
2014-12-23 17:34:50 +00:00
|
|
|
debug("mc->mc_emem_cfg (MEM_SIZE_MB) = 0x%08x\n", emem_cfg);
|
ARM: tegra: query_sdram_size() cleanup
The return value of query_sdram_size() is assigned directly to
gd->ram_size in dram_init(). Adjust the return type to match the field
it's assigned to. This has the beneficial effect that on 64-bit systems,
the return value can correctly represent large RAM sizes over 4GB.
For similar reasons, change the type of variable size_bytes in the same
way.
query_sdram_size() would previously clip the detected RAM size to at most
just under 4GB in all cases, since on 32-bit systems, larger values could
not be represented. Disable this feature on 64-bit systems since the
representation restriction does not exist.
On 64-bit systems, never call get_ram_size() to validate the detected/
calculated RAM size. On any system with a secure OS/... carve-out, RAM
may not have a single contiguous usable area, and this can confuse
get_ram_size(). Ideally, we'd make this call conditional upon some other
flag that indicates specifically that a carve-out is actually in use. At
present, building for a 64-bit system is the best indication we have of
this fact. In fact, the call to get_ram_size() is not useful by the time
U-Boot runs on any system, since U-Boot (and potentially much other early
boot software) always runs from RAM on Tegra, so any mistakes in memory
controller register programming will already have manifested themselves
and prevented U-Boot from running to this point. In the future, we may
simply delete the call to get_ram_size() in all cases.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
2015-08-07 22:12:44 +00:00
|
|
|
#ifndef CONFIG_PHYS_64BIT
|
2014-12-23 17:34:51 +00:00
|
|
|
/*
|
|
|
|
* If >=4GB RAM is present, the byte RAM size won't fit into 32-bits
|
|
|
|
* and will wrap. Clip the reported size to the maximum that a 32-bit
|
|
|
|
* variable can represent (rounded to a page).
|
|
|
|
*/
|
|
|
|
if (emem_cfg >= 4096) {
|
|
|
|
size_bytes = U32_MAX & ~(0x1000 - 1);
|
ARM: tegra: query_sdram_size() cleanup
The return value of query_sdram_size() is assigned directly to
gd->ram_size in dram_init(). Adjust the return type to match the field
it's assigned to. This has the beneficial effect that on 64-bit systems,
the return value can correctly represent large RAM sizes over 4GB.
For similar reasons, change the type of variable size_bytes in the same
way.
query_sdram_size() would previously clip the detected RAM size to at most
just under 4GB in all cases, since on 32-bit systems, larger values could
not be represented. Disable this feature on 64-bit systems since the
representation restriction does not exist.
On 64-bit systems, never call get_ram_size() to validate the detected/
calculated RAM size. On any system with a secure OS/... carve-out, RAM
may not have a single contiguous usable area, and this can confuse
get_ram_size(). Ideally, we'd make this call conditional upon some other
flag that indicates specifically that a carve-out is actually in use. At
present, building for a 64-bit system is the best indication we have of
this fact. In fact, the call to get_ram_size() is not useful by the time
U-Boot runs on any system, since U-Boot (and potentially much other early
boot software) always runs from RAM on Tegra, so any mistakes in memory
controller register programming will already have manifested themselves
and prevented U-Boot from running to this point. In the future, we may
simply delete the call to get_ram_size() in all cases.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
2015-08-07 22:12:44 +00:00
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
2014-12-23 17:34:51 +00:00
|
|
|
/* RAM size EMC is programmed to. */
|
ARM: tegra: query_sdram_size() cleanup
The return value of query_sdram_size() is assigned directly to
gd->ram_size in dram_init(). Adjust the return type to match the field
it's assigned to. This has the beneficial effect that on 64-bit systems,
the return value can correctly represent large RAM sizes over 4GB.
For similar reasons, change the type of variable size_bytes in the same
way.
query_sdram_size() would previously clip the detected RAM size to at most
just under 4GB in all cases, since on 32-bit systems, larger values could
not be represented. Disable this feature on 64-bit systems since the
representation restriction does not exist.
On 64-bit systems, never call get_ram_size() to validate the detected/
calculated RAM size. On any system with a secure OS/... carve-out, RAM
may not have a single contiguous usable area, and this can confuse
get_ram_size(). Ideally, we'd make this call conditional upon some other
flag that indicates specifically that a carve-out is actually in use. At
present, building for a 64-bit system is the best indication we have of
this fact. In fact, the call to get_ram_size() is not useful by the time
U-Boot runs on any system, since U-Boot (and potentially much other early
boot software) always runs from RAM on Tegra, so any mistakes in memory
controller register programming will already have manifested themselves
and prevented U-Boot from running to this point. In the future, we may
simply delete the call to get_ram_size() in all cases.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
2015-08-07 22:12:44 +00:00
|
|
|
size_bytes = (phys_size_t)emem_cfg * 1024 * 1024;
|
|
|
|
#ifndef CONFIG_ARM64
|
2014-12-23 17:34:51 +00:00
|
|
|
/*
|
|
|
|
* If all RAM fits within 32-bits, it can be accessed without
|
|
|
|
* LPAE, so go test the RAM size. Otherwise, we can't access
|
|
|
|
* all the RAM, and get_ram_size() would get confused, so
|
|
|
|
* avoid using it. There's no reason we should need this
|
|
|
|
* validation step anyway.
|
|
|
|
*/
|
|
|
|
if (emem_cfg <= (0 - PHYS_SDRAM_1) / (1024 * 1024))
|
|
|
|
size_bytes = get_ram_size((void *)PHYS_SDRAM_1,
|
|
|
|
size_bytes);
|
ARM: tegra: query_sdram_size() cleanup
The return value of query_sdram_size() is assigned directly to
gd->ram_size in dram_init(). Adjust the return type to match the field
it's assigned to. This has the beneficial effect that on 64-bit systems,
the return value can correctly represent large RAM sizes over 4GB.
For similar reasons, change the type of variable size_bytes in the same
way.
query_sdram_size() would previously clip the detected RAM size to at most
just under 4GB in all cases, since on 32-bit systems, larger values could
not be represented. Disable this feature on 64-bit systems since the
representation restriction does not exist.
On 64-bit systems, never call get_ram_size() to validate the detected/
calculated RAM size. On any system with a secure OS/... carve-out, RAM
may not have a single contiguous usable area, and this can confuse
get_ram_size(). Ideally, we'd make this call conditional upon some other
flag that indicates specifically that a carve-out is actually in use. At
present, building for a 64-bit system is the best indication we have of
this fact. In fact, the call to get_ram_size() is not useful by the time
U-Boot runs on any system, since U-Boot (and potentially much other early
boot software) always runs from RAM on Tegra, so any mistakes in memory
controller register programming will already have manifested themselves
and prevented U-Boot from running to this point. In the future, we may
simply delete the call to get_ram_size() in all cases.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
2015-08-07 22:12:44 +00:00
|
|
|
#endif
|
2014-12-23 17:34:51 +00:00
|
|
|
}
|
2014-10-10 21:32:32 +00:00
|
|
|
#endif
|
2014-07-02 20:12:30 +00:00
|
|
|
|
2014-10-10 21:32:32 +00:00
|
|
|
#if defined(CONFIG_TEGRA30) || defined(CONFIG_TEGRA114)
|
|
|
|
/* External memory limited to 2047 MB due to IROM/HI-VEC */
|
2014-12-23 17:34:50 +00:00
|
|
|
if (size_bytes == SZ_2G)
|
|
|
|
size_bytes -= SZ_1M;
|
2014-07-02 20:12:30 +00:00
|
|
|
#endif
|
2011-01-27 10:58:05 +00:00
|
|
|
|
2014-12-23 17:34:50 +00:00
|
|
|
return size_bytes;
|
2014-10-10 21:32:32 +00:00
|
|
|
}
|
2019-04-15 09:32:20 +00:00
|
|
|
#endif
|
2014-10-10 21:32:32 +00:00
|
|
|
|
2011-01-27 10:58:05 +00:00
|
|
|
int dram_init(void)
|
|
|
|
{
|
2019-04-15 09:32:28 +00:00
|
|
|
int err;
|
|
|
|
|
|
|
|
/* try to initialize DRAM from cboot DTB first */
|
|
|
|
err = cboot_dram_init();
|
|
|
|
if (err == 0)
|
|
|
|
return 0;
|
|
|
|
|
2019-04-15 09:32:20 +00:00
|
|
|
#if IS_ENABLED(CONFIG_TEGRA_MC)
|
2011-01-27 10:58:05 +00:00
|
|
|
/* We do not initialise DRAM here. We just query the size */
|
2011-11-05 03:56:57 +00:00
|
|
|
gd->ram_size = query_sdram_size();
|
2019-04-15 09:32:20 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-27 10:58:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-04-15 09:32:21 +00:00
|
|
|
#if IS_ENABLED(CONFIG_TEGRA_PINCTRL)
|
2012-05-14 13:13:45 +00:00
|
|
|
static int uart_configs[] = {
|
2012-12-11 13:34:15 +00:00
|
|
|
#if defined(CONFIG_TEGRA20)
|
|
|
|
#if defined(CONFIG_TEGRA_UARTA_UAA_UAB)
|
2012-05-14 13:13:45 +00:00
|
|
|
FUNCMUX_UART1_UAA_UAB,
|
2012-12-11 13:34:15 +00:00
|
|
|
#elif defined(CONFIG_TEGRA_UARTA_GPU)
|
2012-05-16 05:59:59 +00:00
|
|
|
FUNCMUX_UART1_GPU,
|
2012-12-11 13:34:15 +00:00
|
|
|
#elif defined(CONFIG_TEGRA_UARTA_SDIO1)
|
2012-05-16 08:21:02 +00:00
|
|
|
FUNCMUX_UART1_SDIO1,
|
2012-12-11 13:34:15 +00:00
|
|
|
#else
|
2012-05-14 13:13:45 +00:00
|
|
|
FUNCMUX_UART1_IRRX_IRTX,
|
2013-01-22 06:20:08 +00:00
|
|
|
#endif
|
|
|
|
FUNCMUX_UART2_UAD,
|
2012-05-14 13:13:45 +00:00
|
|
|
-1,
|
|
|
|
FUNCMUX_UART4_GMC,
|
|
|
|
-1,
|
2013-01-28 13:32:10 +00:00
|
|
|
#elif defined(CONFIG_TEGRA30)
|
2012-12-11 13:34:15 +00:00
|
|
|
FUNCMUX_UART1_ULPI, /* UARTA */
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
2014-01-24 19:46:16 +00:00
|
|
|
#elif defined(CONFIG_TEGRA114)
|
2013-01-28 13:32:10 +00:00
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
FUNCMUX_UART4_GMI, /* UARTD */
|
|
|
|
-1,
|
2015-03-04 23:36:00 +00:00
|
|
|
#elif defined(CONFIG_TEGRA124)
|
2014-01-24 19:46:16 +00:00
|
|
|
FUNCMUX_UART1_KBC, /* UARTA */
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
FUNCMUX_UART4_GPIO, /* UARTD */
|
|
|
|
-1,
|
2015-03-04 23:36:00 +00:00
|
|
|
#else /* Tegra210 */
|
|
|
|
FUNCMUX_UART1_UART1, /* UARTA */
|
|
|
|
-1,
|
|
|
|
-1,
|
|
|
|
FUNCMUX_UART4_UART4, /* UARTD */
|
|
|
|
-1,
|
2012-12-11 13:34:15 +00:00
|
|
|
#endif
|
2012-05-14 13:13:45 +00:00
|
|
|
};
|
|
|
|
|
2011-11-28 15:04:39 +00:00
|
|
|
/**
|
|
|
|
* Set up the specified uarts
|
|
|
|
*
|
|
|
|
* @param uarts_ids Mask containing UARTs to init (UARTx)
|
|
|
|
*/
|
|
|
|
static void setup_uarts(int uart_ids)
|
|
|
|
{
|
|
|
|
static enum periph_id id_for_uart[] = {
|
|
|
|
PERIPH_ID_UART1,
|
|
|
|
PERIPH_ID_UART2,
|
|
|
|
PERIPH_ID_UART3,
|
|
|
|
PERIPH_ID_UART4,
|
2013-01-28 13:32:10 +00:00
|
|
|
PERIPH_ID_UART5,
|
2011-11-28 15:04:39 +00:00
|
|
|
};
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < UART_COUNT; i++) {
|
|
|
|
if (uart_ids & (1 << i)) {
|
|
|
|
enum periph_id id = id_for_uart[i];
|
|
|
|
|
2012-05-14 13:13:45 +00:00
|
|
|
funcmux_select(id, uart_configs[i]);
|
2011-11-28 15:04:39 +00:00
|
|
|
clock_ll_start_uart(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-15 09:32:21 +00:00
|
|
|
#endif
|
2011-11-28 15:04:39 +00:00
|
|
|
|
|
|
|
void board_init_uart_f(void)
|
|
|
|
{
|
2019-04-15 09:32:21 +00:00
|
|
|
#if IS_ENABLED(CONFIG_TEGRA_PINCTRL)
|
2011-11-28 15:04:39 +00:00
|
|
|
int uart_ids = 0; /* bit mask of which UART ids to enable */
|
|
|
|
|
2012-09-05 00:00:24 +00:00
|
|
|
#ifdef CONFIG_TEGRA_ENABLE_UARTA
|
2011-11-28 15:04:39 +00:00
|
|
|
uart_ids |= UARTA;
|
|
|
|
#endif
|
2012-09-05 00:00:24 +00:00
|
|
|
#ifdef CONFIG_TEGRA_ENABLE_UARTB
|
2011-11-28 15:04:39 +00:00
|
|
|
uart_ids |= UARTB;
|
|
|
|
#endif
|
2013-01-28 13:32:10 +00:00
|
|
|
#ifdef CONFIG_TEGRA_ENABLE_UARTC
|
|
|
|
uart_ids |= UARTC;
|
|
|
|
#endif
|
2012-09-05 00:00:24 +00:00
|
|
|
#ifdef CONFIG_TEGRA_ENABLE_UARTD
|
2011-11-28 15:04:39 +00:00
|
|
|
uart_ids |= UARTD;
|
2013-01-28 13:32:10 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_TEGRA_ENABLE_UARTE
|
|
|
|
uart_ids |= UARTE;
|
2011-11-28 15:04:39 +00:00
|
|
|
#endif
|
|
|
|
setup_uarts(uart_ids);
|
2019-04-15 09:32:21 +00:00
|
|
|
#endif
|
2011-11-28 15:04:39 +00:00
|
|
|
}
|
2012-01-09 13:22:15 +00:00
|
|
|
|
2015-12-04 15:58:39 +00:00
|
|
|
#if !CONFIG_IS_ENABLED(OF_CONTROL)
|
2015-11-19 13:48:11 +00:00
|
|
|
static struct ns16550_platdata ns16550_com1_pdata = {
|
|
|
|
.base = CONFIG_SYS_NS16550_COM1,
|
|
|
|
.reg_shift = 2,
|
|
|
|
.clock = CONFIG_SYS_NS16550_CLK,
|
2017-01-18 07:05:49 +00:00
|
|
|
.fcr = UART_FCR_DEFVAL,
|
2015-11-19 13:48:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DEVICE(ns16550_com1) = {
|
|
|
|
"ns16550_serial", &ns16550_com1_pdata
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2019-05-03 13:41:00 +00:00
|
|
|
#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) && !defined(CONFIG_ARM64)
|
2012-01-09 13:22:15 +00:00
|
|
|
void enable_caches(void)
|
|
|
|
{
|
|
|
|
/* Enable D-cache. I-cache is already enabled in start.S */
|
|
|
|
dcache_enable();
|
|
|
|
}
|
|
|
|
#endif
|