upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
/*
|
|
* Copyright 2015 Freescale Semiconductor, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
#include <common.h>
|
|
#include <asm/io.h>
|
|
#include <asm/arch/immap_ls102xa.h>
|
|
#include <ahci.h>
|
|
#include <scsi.h>
|
|
|
|
/* port register default value */
|
|
#define AHCI_PORT_PHY_1_CFG 0xa003fffe
|
|
#define AHCI_PORT_PHY_2_CFG 0x28183411
|
|
#define AHCI_PORT_PHY_3_CFG 0x0e081004
|
|
#define AHCI_PORT_PHY_4_CFG 0x00480811
|
|
#define AHCI_PORT_PHY_5_CFG 0x192c96a4
|
|
#define AHCI_PORT_TRANS_CFG 0x08000025
|
|
|
|
#define SATA_ECC_REG_ADDR 0x20220520
|
|
#define SATA_ECC_DISABLE 0x00020000
|
|
|
|
int ls1021a_sata_init(void)
|
|
{
|
|
struct ccsr_ahci __iomem *ccsr_ahci = (void *)AHCI_BASE_ADDR;
|
|
|
|
#ifdef CONFIG_SYS_FSL_ERRATUM_A008407
|
|
out_le32((void *)SATA_ECC_REG_ADDR, SATA_ECC_DISABLE);
|
|
#endif
|
|
|
|
out_le32(&ccsr_ahci->ppcfg, AHCI_PORT_PHY_1_CFG);
|
|
out_le32(&ccsr_ahci->pp2c, AHCI_PORT_PHY_2_CFG);
|
|
out_le32(&ccsr_ahci->pp3c, AHCI_PORT_PHY_3_CFG);
|
|
out_le32(&ccsr_ahci->pp4c, AHCI_PORT_PHY_4_CFG);
|
|
out_le32(&ccsr_ahci->pp5c, AHCI_PORT_PHY_5_CFG);
|
|
out_le32(&ccsr_ahci->ptc, AHCI_PORT_TRANS_CFG);
|
|
|
|
ahci_init((void __iomem *)AHCI_BASE_ADDR);
|
|
scsi_scan(0);
|
|
|
|
return 0;
|
|
}
|
|
|