TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 1 | /* |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 2 | * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc. |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 3 | * TsiChung Liew (Tsi-Chung.Liew@freescale.com) |
| 4 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /* |
| 9 | * PCI Configuration space access support |
| 10 | */ |
| 11 | #include <common.h> |
| 12 | #include <pci.h> |
| 13 | #include <asm/io.h> |
| 14 | #include <asm/immap.h> |
| 15 | |
| 16 | #if defined(CONFIG_PCI) |
| 17 | /* System RAM mapped over PCI */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 18 | #define CONFIG_SYS_PCI_SYS_MEM_BUS CONFIG_SYS_SDRAM_BASE |
| 19 | #define CONFIG_SYS_PCI_SYS_MEM_PHYS CONFIG_SYS_SDRAM_BASE |
| 20 | #define CONFIG_SYS_PCI_SYS_MEM_SIZE (1024 * 1024 * 1024) |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 21 | |
| 22 | #define cfg_read(val, addr, type, op) *val = op((type)(addr)); |
| 23 | #define cfg_write(val, addr, type, op) op((type *)(addr), (val)); |
| 24 | |
| 25 | #define PCI_OP(rw, size, type, op, mask) \ |
| 26 | int pci_##rw##_cfg_##size(struct pci_controller *hose, \ |
| 27 | pci_dev_t dev, int offset, type val) \ |
| 28 | { \ |
| 29 | u32 addr = 0; \ |
| 30 | u16 cfg_type = 0; \ |
| 31 | addr = ((offset & 0xfc) | cfg_type | (dev) | 0x80000000); \ |
| 32 | out_be32(hose->cfg_addr, addr); \ |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 33 | cfg_##rw(val, hose->cfg_data + (offset & mask), type, op); \ |
| 34 | out_be32(hose->cfg_addr, addr & 0x7fffffff); \ |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 35 | return 0; \ |
| 36 | } |
| 37 | |
| 38 | PCI_OP(read, byte, u8 *, in_8, 3) |
| 39 | PCI_OP(read, word, u16 *, in_le16, 2) |
TsiChungLiew | 2e72ad0 | 2008-01-14 17:11:47 -0600 | [diff] [blame] | 40 | PCI_OP(read, dword, u32 *, in_le32, 0) |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 41 | PCI_OP(write, byte, u8, out_8, 3) |
| 42 | PCI_OP(write, word, u16, out_le16, 2) |
| 43 | PCI_OP(write, dword, u32, out_le32, 0) |
| 44 | |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 45 | void pci_mcf5445x_init(struct pci_controller *hose) |
| 46 | { |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 47 | pci_t *pci = (pci_t *)MMAP_PCI; |
| 48 | pciarb_t *pciarb = (pciarb_t *)MMAP_PCIARB; |
| 49 | gpio_t *gpio = (gpio_t *) MMAP_GPIO; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 50 | u32 barEn = 0; |
| 51 | |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 52 | out_be32(&pciarb->acr, 0x001f001f); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 53 | |
| 54 | /* Set PCIGNT1, PCIREQ1, PCIREQ0/PCIGNTIN, PCIGNT0/PCIREQOUT, |
| 55 | PCIREQ2, PCIGNT2 */ |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 56 | out_be16(&gpio->par_pci, |
| 57 | GPIO_PAR_PCI_GNT3_GNT3 | GPIO_PAR_PCI_GNT2 | |
| 58 | GPIO_PAR_PCI_GNT1 | GPIO_PAR_PCI_GNT0 | |
| 59 | GPIO_PAR_PCI_REQ3_REQ3 | GPIO_PAR_PCI_REQ2 | |
| 60 | GPIO_PAR_PCI_REQ1 | GPIO_PAR_PCI_REQ0); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 61 | |
TsiChungLiew | 2e72ad0 | 2008-01-14 17:11:47 -0600 | [diff] [blame] | 62 | /* Assert reset bit */ |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 63 | setbits_be32(&pci->gscr, PCI_GSCR_PR); |
TsiChungLiew | 2e72ad0 | 2008-01-14 17:11:47 -0600 | [diff] [blame] | 64 | |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 65 | setbits_be32(&pci->tcr1, PCI_TCR1_P); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 66 | |
| 67 | /* Initiator windows */ |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 68 | out_be32(&pci->iw0btar, |
| 69 | CONFIG_SYS_PCI_MEM_PHYS | (CONFIG_SYS_PCI_MEM_PHYS >> 16)); |
| 70 | out_be32(&pci->iw1btar, |
| 71 | CONFIG_SYS_PCI_IO_PHYS | (CONFIG_SYS_PCI_IO_PHYS >> 16)); |
| 72 | out_be32(&pci->iw2btar, |
| 73 | CONFIG_SYS_PCI_CFG_PHYS | (CONFIG_SYS_PCI_CFG_PHYS >> 16)); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 74 | |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 75 | out_be32(&pci->iwcr, |
| 76 | PCI_IWCR_W0C_EN | PCI_IWCR_W1C_EN | PCI_IWCR_W1C_IO | |
| 77 | PCI_IWCR_W2C_EN | PCI_IWCR_W2C_IO); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 78 | |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 79 | out_be32(&pci->icr, 0); |
TsiChungLiew | 2e72ad0 | 2008-01-14 17:11:47 -0600 | [diff] [blame] | 80 | |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 81 | /* Enable bus master and mem access */ |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 82 | out_be32(&pci->scr, PCI_SCR_B | PCI_SCR_M); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 83 | |
| 84 | /* Cache line size and master latency */ |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 85 | out_be32(&pci->cr1, PCI_CR1_CLS(8) | PCI_CR1_LTMR(0xF8)); |
| 86 | out_be32(&pci->cr2, 0); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 87 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 88 | #ifdef CONFIG_SYS_PCI_BAR0 |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 89 | out_be32(&pci->bar0, PCI_BAR_BAR0(CONFIG_SYS_PCI_BAR0)); |
| 90 | out_be32(&pci->tbatr0, CONFIG_SYS_PCI_TBATR0 | PCI_TBATR_EN); |
TsiChungLiew | 2e72ad0 | 2008-01-14 17:11:47 -0600 | [diff] [blame] | 91 | barEn |= PCI_TCR2_B0E; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 92 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 93 | #ifdef CONFIG_SYS_PCI_BAR1 |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 94 | out_be32(&pci->bar1, PCI_BAR_BAR1(CONFIG_SYS_PCI_BAR1)); |
| 95 | out_be32(&pci->tbatr1, CONFIG_SYS_PCI_TBATR1 | PCI_TBATR_EN); |
TsiChungLiew | 2e72ad0 | 2008-01-14 17:11:47 -0600 | [diff] [blame] | 96 | barEn |= PCI_TCR2_B1E; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 97 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 98 | #ifdef CONFIG_SYS_PCI_BAR2 |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 99 | out_be32(&pci->bar2, PCI_BAR_BAR2(CONFIG_SYS_PCI_BAR2)); |
| 100 | out_be32(&pci->tbatr2, CONFIG_SYS_PCI_TBATR2 | PCI_TBATR_EN); |
TsiChungLiew | 2e72ad0 | 2008-01-14 17:11:47 -0600 | [diff] [blame] | 101 | barEn |= PCI_TCR2_B2E; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 102 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 103 | #ifdef CONFIG_SYS_PCI_BAR3 |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 104 | out_be32(&pci->bar3, PCI_BAR_BAR3(CONFIG_SYS_PCI_BAR3)); |
| 105 | out_be32(&pci->tbatr3, CONFIG_SYS_PCI_TBATR3 | PCI_TBATR_EN); |
TsiChungLiew | 2e72ad0 | 2008-01-14 17:11:47 -0600 | [diff] [blame] | 106 | barEn |= PCI_TCR2_B3E; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 107 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 108 | #ifdef CONFIG_SYS_PCI_BAR4 |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 109 | out_be32(&pci->bar4, PCI_BAR_BAR4(CONFIG_SYS_PCI_BAR4)); |
| 110 | out_be32(&pci->tbatr4, CONFIG_SYS_PCI_TBATR4 | PCI_TBATR_EN); |
TsiChungLiew | 2e72ad0 | 2008-01-14 17:11:47 -0600 | [diff] [blame] | 111 | barEn |= PCI_TCR2_B4E; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 112 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 113 | #ifdef CONFIG_SYS_PCI_BAR5 |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 114 | out_be32(&pci->bar5, PCI_BAR_BAR5(CONFIG_SYS_PCI_BAR5)); |
| 115 | out_be32(&pci->tbatr5, CONFIG_SYS_PCI_TBATR5 | PCI_TBATR_EN); |
TsiChungLiew | 2e72ad0 | 2008-01-14 17:11:47 -0600 | [diff] [blame] | 116 | barEn |= PCI_TCR2_B5E; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 117 | #endif |
| 118 | |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 119 | out_be32(&pci->tcr2, barEn); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 120 | |
| 121 | /* Deassert reset bit */ |
Alison Wang | 198cafb | 2012-03-26 21:49:08 +0000 | [diff] [blame] | 122 | clrbits_be32(&pci->gscr, PCI_GSCR_PR); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 123 | udelay(1000); |
| 124 | |
| 125 | /* Enable PCI bus master support */ |
| 126 | hose->first_busno = 0; |
| 127 | hose->last_busno = 0xff; |
| 128 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 129 | pci_set_region(hose->regions + 0, CONFIG_SYS_PCI_MEM_BUS, CONFIG_SYS_PCI_MEM_PHYS, |
| 130 | CONFIG_SYS_PCI_MEM_SIZE, PCI_REGION_MEM); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 131 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 132 | pci_set_region(hose->regions + 1, CONFIG_SYS_PCI_IO_BUS, CONFIG_SYS_PCI_IO_PHYS, |
| 133 | CONFIG_SYS_PCI_IO_SIZE, PCI_REGION_IO); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 134 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 135 | pci_set_region(hose->regions + 2, CONFIG_SYS_PCI_SYS_MEM_BUS, |
| 136 | CONFIG_SYS_PCI_SYS_MEM_PHYS, CONFIG_SYS_PCI_SYS_MEM_SIZE, |
Kumar Gala | ff4e66e | 2009-02-06 09:49:31 -0600 | [diff] [blame] | 137 | PCI_REGION_MEM | PCI_REGION_SYS_MEMORY); |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 138 | |
| 139 | hose->region_count = 3; |
| 140 | |
| 141 | hose->cfg_addr = &(pci->car); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 142 | hose->cfg_data = (volatile unsigned char *)CONFIG_SYS_PCI_CFG_BUS; |
TsiChungLiew | 8ae158c | 2007-08-16 15:05:11 -0500 | [diff] [blame] | 143 | |
| 144 | pci_set_ops(hose, pci_read_cfg_byte, pci_read_cfg_word, |
| 145 | pci_read_cfg_dword, pci_write_cfg_byte, pci_write_cfg_word, |
| 146 | pci_write_cfg_dword); |
| 147 | |
| 148 | /* Hose scan */ |
| 149 | pci_register_hose(hose); |
| 150 | hose->last_busno = pci_hose_scan(hose); |
| 151 | } |
| 152 | #endif /* CONFIG_PCI */ |