blob: c32fcee7f99628f8303ed27ac209bd7a33ab0959 [file] [log] [blame]
TsiChungLiew8ae158c2007-08-16 15:05:11 -05001/*
Alison Wang198cafb2012-03-26 21:49:08 +00002 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChungLiew8ae158c2007-08-16 15:05:11 -05003 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
25 * PCI Configuration space access support
26 */
27#include <common.h>
28#include <pci.h>
29#include <asm/io.h>
30#include <asm/immap.h>
31
32#if defined(CONFIG_PCI)
33/* System RAM mapped over PCI */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020034#define CONFIG_SYS_PCI_SYS_MEM_BUS CONFIG_SYS_SDRAM_BASE
35#define CONFIG_SYS_PCI_SYS_MEM_PHYS CONFIG_SYS_SDRAM_BASE
36#define CONFIG_SYS_PCI_SYS_MEM_SIZE (1024 * 1024 * 1024)
TsiChungLiew8ae158c2007-08-16 15:05:11 -050037
38#define cfg_read(val, addr, type, op) *val = op((type)(addr));
39#define cfg_write(val, addr, type, op) op((type *)(addr), (val));
40
41#define PCI_OP(rw, size, type, op, mask) \
42int pci_##rw##_cfg_##size(struct pci_controller *hose, \
43 pci_dev_t dev, int offset, type val) \
44{ \
45 u32 addr = 0; \
46 u16 cfg_type = 0; \
47 addr = ((offset & 0xfc) | cfg_type | (dev) | 0x80000000); \
48 out_be32(hose->cfg_addr, addr); \
TsiChungLiew8ae158c2007-08-16 15:05:11 -050049 cfg_##rw(val, hose->cfg_data + (offset & mask), type, op); \
50 out_be32(hose->cfg_addr, addr & 0x7fffffff); \
TsiChungLiew8ae158c2007-08-16 15:05:11 -050051 return 0; \
52}
53
54PCI_OP(read, byte, u8 *, in_8, 3)
55PCI_OP(read, word, u16 *, in_le16, 2)
TsiChungLiew2e72ad02008-01-14 17:11:47 -060056PCI_OP(read, dword, u32 *, in_le32, 0)
TsiChungLiew8ae158c2007-08-16 15:05:11 -050057PCI_OP(write, byte, u8, out_8, 3)
58PCI_OP(write, word, u16, out_le16, 2)
59PCI_OP(write, dword, u32, out_le32, 0)
60
TsiChungLiew8ae158c2007-08-16 15:05:11 -050061void pci_mcf5445x_init(struct pci_controller *hose)
62{
Alison Wang198cafb2012-03-26 21:49:08 +000063 pci_t *pci = (pci_t *)MMAP_PCI;
64 pciarb_t *pciarb = (pciarb_t *)MMAP_PCIARB;
65 gpio_t *gpio = (gpio_t *) MMAP_GPIO;
TsiChungLiew8ae158c2007-08-16 15:05:11 -050066 u32 barEn = 0;
67
Alison Wang198cafb2012-03-26 21:49:08 +000068 out_be32(&pciarb->acr, 0x001f001f);
TsiChungLiew8ae158c2007-08-16 15:05:11 -050069
70 /* Set PCIGNT1, PCIREQ1, PCIREQ0/PCIGNTIN, PCIGNT0/PCIREQOUT,
71 PCIREQ2, PCIGNT2 */
Alison Wang198cafb2012-03-26 21:49:08 +000072 out_be16(&gpio->par_pci,
73 GPIO_PAR_PCI_GNT3_GNT3 | GPIO_PAR_PCI_GNT2 |
74 GPIO_PAR_PCI_GNT1 | GPIO_PAR_PCI_GNT0 |
75 GPIO_PAR_PCI_REQ3_REQ3 | GPIO_PAR_PCI_REQ2 |
76 GPIO_PAR_PCI_REQ1 | GPIO_PAR_PCI_REQ0);
TsiChungLiew8ae158c2007-08-16 15:05:11 -050077
TsiChungLiew2e72ad02008-01-14 17:11:47 -060078 /* Assert reset bit */
Alison Wang198cafb2012-03-26 21:49:08 +000079 setbits_be32(&pci->gscr, PCI_GSCR_PR);
TsiChungLiew2e72ad02008-01-14 17:11:47 -060080
Alison Wang198cafb2012-03-26 21:49:08 +000081 setbits_be32(&pci->tcr1, PCI_TCR1_P);
TsiChungLiew8ae158c2007-08-16 15:05:11 -050082
83 /* Initiator windows */
Alison Wang198cafb2012-03-26 21:49:08 +000084 out_be32(&pci->iw0btar,
85 CONFIG_SYS_PCI_MEM_PHYS | (CONFIG_SYS_PCI_MEM_PHYS >> 16));
86 out_be32(&pci->iw1btar,
87 CONFIG_SYS_PCI_IO_PHYS | (CONFIG_SYS_PCI_IO_PHYS >> 16));
88 out_be32(&pci->iw2btar,
89 CONFIG_SYS_PCI_CFG_PHYS | (CONFIG_SYS_PCI_CFG_PHYS >> 16));
TsiChungLiew8ae158c2007-08-16 15:05:11 -050090
Alison Wang198cafb2012-03-26 21:49:08 +000091 out_be32(&pci->iwcr,
92 PCI_IWCR_W0C_EN | PCI_IWCR_W1C_EN | PCI_IWCR_W1C_IO |
93 PCI_IWCR_W2C_EN | PCI_IWCR_W2C_IO);
TsiChungLiew8ae158c2007-08-16 15:05:11 -050094
Alison Wang198cafb2012-03-26 21:49:08 +000095 out_be32(&pci->icr, 0);
TsiChungLiew2e72ad02008-01-14 17:11:47 -060096
TsiChungLiew8ae158c2007-08-16 15:05:11 -050097 /* Enable bus master and mem access */
Alison Wang198cafb2012-03-26 21:49:08 +000098 out_be32(&pci->scr, PCI_SCR_B | PCI_SCR_M);
TsiChungLiew8ae158c2007-08-16 15:05:11 -050099
100 /* Cache line size and master latency */
Alison Wang198cafb2012-03-26 21:49:08 +0000101 out_be32(&pci->cr1, PCI_CR1_CLS(8) | PCI_CR1_LTMR(0xF8));
102 out_be32(&pci->cr2, 0);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500103
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200104#ifdef CONFIG_SYS_PCI_BAR0
Alison Wang198cafb2012-03-26 21:49:08 +0000105 out_be32(&pci->bar0, PCI_BAR_BAR0(CONFIG_SYS_PCI_BAR0));
106 out_be32(&pci->tbatr0, CONFIG_SYS_PCI_TBATR0 | PCI_TBATR_EN);
TsiChungLiew2e72ad02008-01-14 17:11:47 -0600107 barEn |= PCI_TCR2_B0E;
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500108#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200109#ifdef CONFIG_SYS_PCI_BAR1
Alison Wang198cafb2012-03-26 21:49:08 +0000110 out_be32(&pci->bar1, PCI_BAR_BAR1(CONFIG_SYS_PCI_BAR1));
111 out_be32(&pci->tbatr1, CONFIG_SYS_PCI_TBATR1 | PCI_TBATR_EN);
TsiChungLiew2e72ad02008-01-14 17:11:47 -0600112 barEn |= PCI_TCR2_B1E;
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500113#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200114#ifdef CONFIG_SYS_PCI_BAR2
Alison Wang198cafb2012-03-26 21:49:08 +0000115 out_be32(&pci->bar2, PCI_BAR_BAR2(CONFIG_SYS_PCI_BAR2));
116 out_be32(&pci->tbatr2, CONFIG_SYS_PCI_TBATR2 | PCI_TBATR_EN);
TsiChungLiew2e72ad02008-01-14 17:11:47 -0600117 barEn |= PCI_TCR2_B2E;
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500118#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200119#ifdef CONFIG_SYS_PCI_BAR3
Alison Wang198cafb2012-03-26 21:49:08 +0000120 out_be32(&pci->bar3, PCI_BAR_BAR3(CONFIG_SYS_PCI_BAR3));
121 out_be32(&pci->tbatr3, CONFIG_SYS_PCI_TBATR3 | PCI_TBATR_EN);
TsiChungLiew2e72ad02008-01-14 17:11:47 -0600122 barEn |= PCI_TCR2_B3E;
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500123#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200124#ifdef CONFIG_SYS_PCI_BAR4
Alison Wang198cafb2012-03-26 21:49:08 +0000125 out_be32(&pci->bar4, PCI_BAR_BAR4(CONFIG_SYS_PCI_BAR4));
126 out_be32(&pci->tbatr4, CONFIG_SYS_PCI_TBATR4 | PCI_TBATR_EN);
TsiChungLiew2e72ad02008-01-14 17:11:47 -0600127 barEn |= PCI_TCR2_B4E;
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500128#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200129#ifdef CONFIG_SYS_PCI_BAR5
Alison Wang198cafb2012-03-26 21:49:08 +0000130 out_be32(&pci->bar5, PCI_BAR_BAR5(CONFIG_SYS_PCI_BAR5));
131 out_be32(&pci->tbatr5, CONFIG_SYS_PCI_TBATR5 | PCI_TBATR_EN);
TsiChungLiew2e72ad02008-01-14 17:11:47 -0600132 barEn |= PCI_TCR2_B5E;
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500133#endif
134
Alison Wang198cafb2012-03-26 21:49:08 +0000135 out_be32(&pci->tcr2, barEn);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500136
137 /* Deassert reset bit */
Alison Wang198cafb2012-03-26 21:49:08 +0000138 clrbits_be32(&pci->gscr, PCI_GSCR_PR);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500139 udelay(1000);
140
141 /* Enable PCI bus master support */
142 hose->first_busno = 0;
143 hose->last_busno = 0xff;
144
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200145 pci_set_region(hose->regions + 0, CONFIG_SYS_PCI_MEM_BUS, CONFIG_SYS_PCI_MEM_PHYS,
146 CONFIG_SYS_PCI_MEM_SIZE, PCI_REGION_MEM);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500147
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200148 pci_set_region(hose->regions + 1, CONFIG_SYS_PCI_IO_BUS, CONFIG_SYS_PCI_IO_PHYS,
149 CONFIG_SYS_PCI_IO_SIZE, PCI_REGION_IO);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500150
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200151 pci_set_region(hose->regions + 2, CONFIG_SYS_PCI_SYS_MEM_BUS,
152 CONFIG_SYS_PCI_SYS_MEM_PHYS, CONFIG_SYS_PCI_SYS_MEM_SIZE,
Kumar Galaff4e66e2009-02-06 09:49:31 -0600153 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500154
155 hose->region_count = 3;
156
157 hose->cfg_addr = &(pci->car);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200158 hose->cfg_data = (volatile unsigned char *)CONFIG_SYS_PCI_CFG_BUS;
TsiChungLiew8ae158c2007-08-16 15:05:11 -0500159
160 pci_set_ops(hose, pci_read_cfg_byte, pci_read_cfg_word,
161 pci_read_cfg_dword, pci_write_cfg_byte, pci_write_cfg_word,
162 pci_write_cfg_dword);
163
164 /* Hose scan */
165 pci_register_hose(hose);
166 hose->last_busno = pci_hose_scan(hose);
167}
168#endif /* CONFIG_PCI */