mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 14:10:43 +00:00
boards: fsl: lx2160ardb: enable flexcan
Flexcan in LX2160ARDB is controlled by FPGA register boardcfg4 bit 5. enable this bit so that flexcan is enabled in LX2160ARDB. Signed-off-by: Pankaj Bansal <pankaj.bansal@nxp.com> Reviewed-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
This commit is contained in:
parent
67d3a815cb
commit
2e35d07658
1 changed files with 20 additions and 0 deletions
|
@ -410,6 +410,26 @@ int config_board_mux(void)
|
|||
|
||||
return 0;
|
||||
}
|
||||
#elif defined(CONFIG_TARGET_LX2160ARDB)
|
||||
int config_board_mux(void)
|
||||
{
|
||||
u8 brdcfg;
|
||||
|
||||
brdcfg = QIXIS_READ(brdcfg[4]);
|
||||
/* The BRDCFG4 register controls general board configuration.
|
||||
*|-------------------------------------------|
|
||||
*|Field | Function |
|
||||
*|-------------------------------------------|
|
||||
*|5 | CAN I/O Enable (net CFG_CAN_EN_B):|
|
||||
*|CAN_EN | 0= CAN transceivers are disabled. |
|
||||
*| | 1= CAN transceivers are enabled. |
|
||||
*|-------------------------------------------|
|
||||
*/
|
||||
brdcfg |= BIT_MASK(5);
|
||||
QIXIS_WRITE(brdcfg[4], brdcfg);
|
||||
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
int config_board_mux(void)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue