blob: ac42cca2efa746b1a5f5052bb3787d0c09f1a58c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
TsiChungLiew8999e6b2008-01-15 13:37:34 -06002/*
Alison Wang027f76f2012-03-26 21:49:07 +00003 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChungLiew8999e6b2008-01-15 13:37:34 -06004 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
TsiChungLiew8999e6b2008-01-15 13:37:34 -06005 */
6
7/*
8 * PCI Configuration space access support
9 */
10#include <common.h>
11#include <pci.h>
12#include <asm/io.h>
13#include <asm/immap.h>
14
15#if defined(CONFIG_PCI)
16/* System RAM mapped over PCI */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020017#define CONFIG_SYS_PCI_SYS_MEM_BUS CONFIG_SYS_SDRAM_BASE
18#define CONFIG_SYS_PCI_SYS_MEM_PHYS CONFIG_SYS_SDRAM_BASE
19#define CONFIG_SYS_PCI_SYS_MEM_SIZE (1024 * 1024 * 1024)
TsiChungLiew8999e6b2008-01-15 13:37:34 -060020
21#define cfg_read(val, addr, type, op) *val = op((type)(addr));
22#define cfg_write(val, addr, type, op) op((type *)(addr), (val));
23
24#define PCI_OP(rw, size, type, op, mask) \
25int pci_##rw##_cfg_##size(struct pci_controller *hose, \
26 pci_dev_t dev, int offset, type val) \
27{ \
28 u32 addr = 0; \
29 u16 cfg_type = 0; \
30 addr = ((offset & 0xfc) | cfg_type | (dev) | 0x80000000); \
31 out_be32(hose->cfg_addr, addr); \
32 cfg_##rw(val, hose->cfg_data + (offset & mask), type, op); \
33 __asm__ __volatile__("nop"); \
34 __asm__ __volatile__("nop"); \
35 out_be32(hose->cfg_addr, addr & 0x7fffffff); \
36 return 0; \
37}
38
39PCI_OP(read, byte, u8 *, in_8, 3)
40PCI_OP(read, word, u16 *, in_le16, 2)
41PCI_OP(write, byte, u8, out_8, 3)
42PCI_OP(write, word, u16, out_le16, 2)
43PCI_OP(write, dword, u32, out_le32, 0)
44
45int pci_read_cfg_dword(struct pci_controller *hose, pci_dev_t dev,
46 int offset, u32 * val)
47{
48 u32 addr;
49 u32 tmpv;
50 u32 mask = 2; /* word access */
51 /* Read lower 16 bits */
52 addr = ((offset & 0xfc) | (dev) | 0x80000000);
53 out_be32(hose->cfg_addr, addr);
54 *val = (u32) in_le16((u16 *) (hose->cfg_data + (offset & mask)));
55 __asm__ __volatile__("nop");
56 out_be32(hose->cfg_addr, addr & 0x7fffffff);
57
58 /* Read upper 16 bits */
59 offset += 2;
60 addr = ((offset & 0xfc) | 1 | (dev) | 0x80000000);
61 out_be32(hose->cfg_addr, addr);
62 tmpv = (u32) in_le16((u16 *) (hose->cfg_data + (offset & mask)));
63 __asm__ __volatile__("nop");
64 out_be32(hose->cfg_addr, addr & 0x7fffffff);
65
66 /* combine results into dword value */
67 *val = (tmpv << 16) | *val;
68
69 return 0;
70}
71
72void pci_mcf547x_8x_init(struct pci_controller *hose)
73{
Alison Wang027f76f2012-03-26 21:49:07 +000074 pci_t *pci = (pci_t *) MMAP_PCI;
75 gpio_t *gpio = (gpio_t *) MMAP_GPIO;
TsiChungLiew8999e6b2008-01-15 13:37:34 -060076
77 /* Port configuration */
Alison Wang027f76f2012-03-26 21:49:07 +000078 out_be16(&gpio->par_pcibg,
79 GPIO_PAR_PCIBG_PCIBG0(3) | GPIO_PAR_PCIBG_PCIBG1(3) |
80 GPIO_PAR_PCIBG_PCIBG2(3) | GPIO_PAR_PCIBG_PCIBG3(3) |
81 GPIO_PAR_PCIBG_PCIBG4(3));
82 out_be16(&gpio->par_pcibr,
83 GPIO_PAR_PCIBR_PCIBR0(3) | GPIO_PAR_PCIBR_PCIBR1(3) |
84 GPIO_PAR_PCIBR_PCIBR2(3) | GPIO_PAR_PCIBR_PCIBR3(3) |
85 GPIO_PAR_PCIBR_PCIBR4(3));
TsiChungLiew8999e6b2008-01-15 13:37:34 -060086
87 /* Assert reset bit */
Alison Wang027f76f2012-03-26 21:49:07 +000088 setbits_be32(&pci->gscr, PCI_GSCR_PR);
TsiChungLiew8999e6b2008-01-15 13:37:34 -060089
Alison Wang027f76f2012-03-26 21:49:07 +000090 out_be32(&pci->tcr1, PCI_TCR1_P);
TsiChungLiew8999e6b2008-01-15 13:37:34 -060091
92 /* Initiator windows */
Alison Wang027f76f2012-03-26 21:49:07 +000093 out_be32(&pci->iw0btar,
94 CONFIG_SYS_PCI_MEM_PHYS | (CONFIG_SYS_PCI_MEM_PHYS >> 16));
95 out_be32(&pci->iw1btar,
96 CONFIG_SYS_PCI_IO_PHYS | (CONFIG_SYS_PCI_IO_PHYS >> 16));
97 out_be32(&pci->iw2btar,
98 CONFIG_SYS_PCI_CFG_PHYS | (CONFIG_SYS_PCI_CFG_PHYS >> 16));
TsiChungLiew8999e6b2008-01-15 13:37:34 -060099
Alison Wang027f76f2012-03-26 21:49:07 +0000100 out_be32(&pci->iwcr,
101 PCI_IWCR_W0C_EN | PCI_IWCR_W1C_EN | PCI_IWCR_W1C_IO |
102 PCI_IWCR_W2C_EN | PCI_IWCR_W2C_IO);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600103
Alison Wang027f76f2012-03-26 21:49:07 +0000104 out_be32(&pci->icr, 0);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600105
106 /* Enable bus master and mem access */
Alison Wang027f76f2012-03-26 21:49:07 +0000107 out_be32(&pci->scr, PCI_SCR_B | PCI_SCR_M);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600108
109 /* Cache line size and master latency */
Alison Wang027f76f2012-03-26 21:49:07 +0000110 out_be32(&pci->cr1, PCI_CR1_CLS(8) | PCI_CR1_LTMR(0xf8));
111 out_be32(&pci->cr2, 0);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600112
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200113#ifdef CONFIG_SYS_PCI_BAR0
Alison Wang027f76f2012-03-26 21:49:07 +0000114 out_be32(&pci->bar0, PCI_BAR_BAR0(CONFIG_SYS_PCI_BAR0));
115 out_be32(&pci->tbatr0a, CONFIG_SYS_PCI_TBATR0 | PCI_TBATR_EN);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600116#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200117#ifdef CONFIG_SYS_PCI_BAR1
Alison Wang027f76f2012-03-26 21:49:07 +0000118 out_be32(&pci->bar1, PCI_BAR_BAR1(CONFIG_SYS_PCI_BAR1));
119 out_be32(&pci->tbatr1a, CONFIG_SYS_PCI_TBATR1 | PCI_TBATR_EN);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600120#endif
121
122 /* Deassert reset bit */
Alison Wang027f76f2012-03-26 21:49:07 +0000123 clrbits_be32(&pci->gscr, PCI_GSCR_PR);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600124 udelay(1000);
125
126 /* Enable PCI bus master support */
127 hose->first_busno = 0;
128 hose->last_busno = 0xff;
129
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200130 pci_set_region(hose->regions + 0, CONFIG_SYS_PCI_MEM_BUS, CONFIG_SYS_PCI_MEM_PHYS,
131 CONFIG_SYS_PCI_MEM_SIZE, PCI_REGION_MEM);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600132
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200133 pci_set_region(hose->regions + 1, CONFIG_SYS_PCI_IO_BUS, CONFIG_SYS_PCI_IO_PHYS,
134 CONFIG_SYS_PCI_IO_SIZE, PCI_REGION_IO);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600135
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200136 pci_set_region(hose->regions + 2, CONFIG_SYS_PCI_SYS_MEM_BUS,
137 CONFIG_SYS_PCI_SYS_MEM_PHYS, CONFIG_SYS_PCI_SYS_MEM_SIZE,
Kumar Galaefa1f1d2009-02-06 09:49:31 -0600138 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600139
140 hose->region_count = 3;
141
142 hose->cfg_addr = &(pci->car);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200143 hose->cfg_data = (volatile unsigned char *)CONFIG_SYS_PCI_CFG_BUS;
TsiChungLiew8999e6b2008-01-15 13:37:34 -0600144
145 pci_set_ops(hose, pci_read_cfg_byte, pci_read_cfg_word,
146 pci_read_cfg_dword, pci_write_cfg_byte, pci_write_cfg_word,
147 pci_write_cfg_dword);
148
149 /* Hose scan */
150 pci_register_hose(hose);
151 hose->last_busno = pci_hose_scan(hose);
152}
153#endif /* CONFIG_PCI */