mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-10 20:28:59 +00:00
ppc/85xx: Clean up p1_p2_rdb PCI setup
General code cleanup to use in/out IO accessors as well as making the code that prints out info sane between board and generic fsl pci code. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
276e3f2094
commit
2350cdb50e
2 changed files with 23 additions and 21 deletions
|
@ -41,60 +41,62 @@ static struct pci_controller pcie2_hose;
|
||||||
|
|
||||||
void pci_init_board(void)
|
void pci_init_board(void)
|
||||||
{
|
{
|
||||||
struct fsl_pci_info pci_info[2];
|
|
||||||
volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
|
volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
|
||||||
uint devdisr = in_be32(&gur->devdisr);
|
struct fsl_pci_info pci_info[2];
|
||||||
uint io_sel = (in_be32(&gur->pordevsr) & MPC85xx_PORDEVSR_IO_SEL) >> 19;
|
u32 devdisr, pordevsr, io_sel, host_agent;
|
||||||
uint host_agent = (in_be32(&gur->porbmsr) & MPC85xx_PORBMSR_HA) >> 16;
|
|
||||||
int num = 0;
|
|
||||||
int first_free_busno = 0;
|
int first_free_busno = 0;
|
||||||
|
int num = 0;
|
||||||
|
|
||||||
int pcie_ep, pcie_configured;
|
int pcie_ep, pcie_configured;
|
||||||
|
|
||||||
|
devdisr = in_be32(&gur->devdisr);
|
||||||
|
pordevsr = in_be32(&gur->pordevsr);
|
||||||
|
io_sel = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
|
||||||
|
host_agent = (in_be32(&gur->porbmsr) & MPC85xx_PORBMSR_HA) >> 16;
|
||||||
|
|
||||||
debug (" pci_init_board: devdisr=%x, io_sel=%x, host_agent=%x\n",
|
debug (" pci_init_board: devdisr=%x, io_sel=%x, host_agent=%x\n",
|
||||||
devdisr, io_sel, host_agent);
|
devdisr, io_sel, host_agent);
|
||||||
|
|
||||||
if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII2_DIS))
|
if (!(pordevsr & MPC85xx_PORDEVSR_SGMII2_DIS))
|
||||||
printf (" eTSEC2 is in sgmii mode.\n");
|
printf (" eTSEC2 is in sgmii mode.\n");
|
||||||
|
|
||||||
|
puts("\n");
|
||||||
#ifdef CONFIG_PCIE2
|
#ifdef CONFIG_PCIE2
|
||||||
SET_STD_PCIE_INFO(pci_info[num], 2);
|
|
||||||
pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_2, host_agent);
|
pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_2, host_agent);
|
||||||
pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_2, io_sel);
|
pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_2, io_sel);
|
||||||
|
|
||||||
if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
|
if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
|
||||||
puts ("\n PCIE2 connected to Slot 1 as ");
|
SET_STD_PCIE_INFO(pci_info[num], 2);
|
||||||
printf ("%s (base address %lx)",
|
printf(" PCIE2 connected to Slot 1 as %s (base addr %lx)\n",
|
||||||
pcie_ep ? "End Point": "Root Complex", pci_info[num].regs);
|
pcie_ep ? "End Point" : "Root Complex",
|
||||||
first_free_busno = fsl_pci_init_port(&pci_info[num],
|
pci_info[num].regs);
|
||||||
|
first_free_busno = fsl_pci_init_port(&pci_info[num++],
|
||||||
&pcie2_hose, first_free_busno);
|
&pcie2_hose, first_free_busno);
|
||||||
num++;
|
|
||||||
} else {
|
} else {
|
||||||
printf (" PCIE2: disabled\n");
|
printf (" PCIE2: disabled\n");
|
||||||
}
|
}
|
||||||
|
puts("\n");
|
||||||
#else
|
#else
|
||||||
set_bits32(&gur->devdisr, MPC85xx_DEVDISR_PCIE2); /* disable */
|
setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE2); /* disable */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_PCIE1
|
#ifdef CONFIG_PCIE1
|
||||||
SET_STD_PCIE_INFO(pci_info[num], 1);
|
|
||||||
|
|
||||||
pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
|
pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
|
||||||
pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
|
pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
|
||||||
|
|
||||||
if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
|
if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
|
||||||
puts ("\n PCIE1 connected to Slot 2 as ");
|
SET_STD_PCIE_INFO(pci_info[num], 1);
|
||||||
printf ("%s (base address %lx)",
|
printf(" PCIE1 connected to Slot 2 as %s (base addr %lx)\n",
|
||||||
pcie_ep ? "End Point" : "Root Complex",
|
pcie_ep ? "End Point" : "Root Complex",
|
||||||
pci_info[num].regs);
|
pci_info[num].regs);
|
||||||
first_free_busno = fsl_pci_init_port(&pci_info[num],
|
first_free_busno = fsl_pci_init_port(&pci_info[num++],
|
||||||
&pcie1_hose, first_free_busno);
|
&pcie1_hose, first_free_busno);
|
||||||
num++;
|
|
||||||
} else {
|
} else {
|
||||||
printf (" PCIE1: disabled\n");
|
printf (" PCIE1: disabled\n");
|
||||||
}
|
}
|
||||||
|
puts("\n");
|
||||||
#else
|
#else
|
||||||
set_bits32(&gur->devdisr, MPC85xx_DEVDISR_PCIE); /* disable */
|
setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE); /* disable */
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -450,7 +450,7 @@ int fsl_pci_init_port(struct fsl_pci_info *pci_info,
|
||||||
|
|
||||||
fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
|
fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data);
|
||||||
|
|
||||||
printf("\n PCIE%x on bus %02x - %02x\n", pci_info->pci_num,
|
printf(" PCIE%x on bus %02x - %02x\n", pci_info->pci_num,
|
||||||
hose->first_busno, hose->last_busno);
|
hose->first_busno, hose->last_busno);
|
||||||
|
|
||||||
return(hose->last_busno + 1);
|
return(hose->last_busno + 1);
|
||||||
|
|
Loading…
Reference in a new issue