blob: 08342077665220b8b686648b89d15ef1d0c0ad1a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Rafal Jaworowski384da5e2005-10-17 02:39:53 +02002/*
3 * (C) Copyright 2005
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Kim Phillips57a2af32009-07-18 18:42:13 -05005 * Copyright (C) 2006-2009 Freescale Semiconductor, Inc.
Rafal Jaworowski384da5e2005-10-17 02:39:53 +02006 */
7
Simon Glass18afe102019-11-14 12:57:47 -07008#include <init.h>
Rafal Jaworowski384da5e2005-10-17 02:39:53 +02009#include <asm/mmu.h>
Kim Phillips57a2af32009-07-18 18:42:13 -050010#include <asm/io.h>
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020011#include <common.h>
Kim Phillips57a2af32009-07-18 18:42:13 -050012#include <mpc83xx.h>
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020013#include <pci.h>
Kim Phillips57a2af32009-07-18 18:42:13 -050014#include <i2c.h>
15#include <asm/fsl_i2c.h>
Wolfgang Denk95593572009-05-14 23:18:34 +020016
Kim Phillips57a2af32009-07-18 18:42:13 -050017static struct pci_region pci1_regions[] = {
18 {
19 bus_start: CONFIG_SYS_PCI1_MEM_BASE,
20 phys_start: CONFIG_SYS_PCI1_MEM_PHYS,
21 size: CONFIG_SYS_PCI1_MEM_SIZE,
22 flags: PCI_REGION_MEM | PCI_REGION_PREFETCH
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020023 },
Kim Phillips57a2af32009-07-18 18:42:13 -050024 {
25 bus_start: CONFIG_SYS_PCI1_IO_BASE,
26 phys_start: CONFIG_SYS_PCI1_IO_PHYS,
27 size: CONFIG_SYS_PCI1_IO_SIZE,
28 flags: PCI_REGION_IO
29 },
30 {
31 bus_start: CONFIG_SYS_PCI1_MMIO_BASE,
32 phys_start: CONFIG_SYS_PCI1_MMIO_PHYS,
33 size: CONFIG_SYS_PCI1_MMIO_SIZE,
34 flags: PCI_REGION_MEM
35 },
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020036};
37
Kim Phillips57a2af32009-07-18 18:42:13 -050038/*
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020039 * pci_init_board()
40 *
41 * NOTICE: MPC8349 internally has two PCI controllers (PCI1 and PCI2) but since
42 * per TQM834x design physical connections to external devices (PCI sockets)
43 * are routed only to the PCI1 we do not account for the second one - this code
44 * supports PCI1 module only. Should support for the PCI2 be required in the
45 * future it needs a separate pci_controller structure (above) and handling -
46 * please refer to other boards' implementation for dual PCI host controllers,
47 * for example board/Marvell/db64360/pci.c, pci_init_board()
48 *
49 */
50void
51pci_init_board(void)
52{
Kim Phillips57a2af32009-07-18 18:42:13 -050053 volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
54 volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk;
55 volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
56 struct pci_region *reg[] = { pci1_regions };
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020057 u32 reg32;
Wolfgang Denkf6a692b2005-12-04 00:40:34 +010058
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020059 /*
Wolfgang Denkf6a692b2005-12-04 00:40:34 +010060 * Configure PCI controller and PCI_CLK_OUTPUT
Kim Phillips57a2af32009-07-18 18:42:13 -050061 *
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020062 * WARNING! only PCI_CLK_OUTPUT1 is enabled here as this is the one
63 * line actually used for clocking all external PCI devices in TQM83xx.
Wolfgang Denkf6a692b2005-12-04 00:40:34 +010064 * Enabling other PCI_CLK_OUTPUT lines may lead to board's hang for
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020065 * unknown reasons - particularly PCI_CLK_OUTPUT6 and PCI_CLK_OUTPUT7
Wolfgang Denkf6a692b2005-12-04 00:40:34 +010066 * are known to hang the board; this issue is under investigation
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020067 * (13 oct 05)
68 */
69 reg32 = OCCR_PCICOE1;
Wolfgang Denkf6a692b2005-12-04 00:40:34 +010070#if 0
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020071 /* enabling all PCI_CLK_OUTPUT lines HANGS the board... */
72 reg32 = 0xff000000;
Wolfgang Denkf6a692b2005-12-04 00:40:34 +010073#endif
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020074 if (clk->spmr & SPMR_CKID) {
Mario Sixd10f3182019-01-21 09:17:53 +010075 /* PCI Clock is half CONFIG_SYS_CLK_FREQ so need to set up OCCR
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020076 * fields accordingly */
77 reg32 |= (OCCR_PCI1CR | OCCR_PCI2CR);
Wolfgang Denkf6a692b2005-12-04 00:40:34 +010078
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020079 reg32 |= (OCCR_PCICD0 | OCCR_PCICD1 | OCCR_PCICD2 \
80 | OCCR_PCICD3 | OCCR_PCICD4 | OCCR_PCICD5 \
81 | OCCR_PCICD6 | OCCR_PCICD7);
82 }
83
84 clk->occr = reg32;
85 udelay(2000);
86
Kim Phillips57a2af32009-07-18 18:42:13 -050087 /* Configure PCI Local Access Windows */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020088 pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR;
Rafal Jaworowskice49c272005-11-17 00:26:18 +010089 pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_512M;
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020090
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020091 pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR;
Rafal Jaworowskice49c272005-11-17 00:26:18 +010092 pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_16M;
Rafal Jaworowski384da5e2005-10-17 02:39:53 +020093
Kim Phillips57a2af32009-07-18 18:42:13 -050094 udelay(2000);
Wolfgang Denk95593572009-05-14 23:18:34 +020095
Peter Tysere2283322010-09-14 19:13:50 -050096 mpc83xx_pci_init(1, reg);
Wolfgang Denk95593572009-05-14 23:18:34 +020097}