mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
board: freescale: t208xrdb: enable Power-On Reset for rev D boards
Starting with board revision D, the MISCCSR CPLD register needs to be configured to enable Power-on Reset for software reset commands. Signed-off-by: Camelia Groza <camelia.groza@nxp.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
This commit is contained in:
parent
00ac37a9bc
commit
6466b95e7c
2 changed files with 11 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||
/*
|
||||
* Copyright 2014 Freescale Semiconductor
|
||||
* Copyright 2021 NXP
|
||||
*/
|
||||
|
||||
/*
|
||||
|
@ -42,3 +43,6 @@ void cpld_write(unsigned int reg, u8 value);
|
|||
|
||||
/* RSTCON Register */
|
||||
#define CPLD_RSTCON_EDC_RST 0x04
|
||||
|
||||
/* MISCCSR Register */
|
||||
#define CPLD_MISC_POR_EN 0x30
|
||||
|
|
|
@ -128,6 +128,13 @@ int misc_init_r(void)
|
|||
reg |= CPLD_RSTCON_EDC_RST;
|
||||
CPLD_WRITE(reset_ctl, reg);
|
||||
|
||||
/* Enable POR for boards revisions D and up */
|
||||
if (get_hw_revision() >= 'D') {
|
||||
reg = CPLD_READ(misc_csr);
|
||||
reg |= CPLD_MISC_POR_EN;
|
||||
CPLD_WRITE(misc_csr, reg);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue