blob: 4923209d6801559721098b6da9eef6dd3c8ec917 [file] [log] [blame]
wdenkaffae2b2002-08-17 09:36:01 +00001/*
2 * Support for indirect PCI bridges.
3 *
4 * Copyright (C) 1998 Gabriel Paubert.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <common.h>
13
14#ifdef CONFIG_PCI
wdenkea909b72002-11-21 23:11:29 +000015#ifndef __I386__
wdenkaffae2b2002-08-17 09:36:01 +000016
17#include <asm/processor.h>
18#include <asm/io.h>
19#include <pci.h>
20
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
wdenk289f9322005-01-12 00:15:14 +000024#ifdef CONFIG_IXP425
25extern unsigned char in_8 (volatile unsigned *addr);
26extern unsigned short in_le16 (volatile unsigned *addr);
27extern unsigned in_le32 (volatile unsigned *addr);
28extern void out_8 (volatile unsigned *addr, char val);
29extern void out_le16 (volatile unsigned *addr, unsigned short val);
30extern void out_le32 (volatile unsigned *addr, unsigned int val);
31#endif /* CONFIG_IXP425 */
32
wdenk5d232d02003-05-22 22:52:13 +000033#if defined(CONFIG_MPC8260)
wdenk4d75a502003-03-25 16:50:56 +000034#define INDIRECT_PCI_OP(rw, size, type, op, mask) \
35static int \
36indirect_##rw##_config_##size(struct pci_controller *hose, \
37 pci_dev_t dev, int offset, type val) \
38{ \
39 out_le32(hose->cfg_addr, dev | (offset & 0xfc) | 0x80000000); \
40 sync(); \
41 cfg_##rw(val, hose->cfg_data + (offset & mask), type, op); \
42 return 0; \
43}
wdenk42d1f032003-10-15 23:53:47 +000044#elif defined(CONFIG_E500)
45#define INDIRECT_PCI_OP(rw, size, type, op, mask) \
46static int \
47indirect_##rw##_config_##size(struct pci_controller *hose, \
48 pci_dev_t dev, int offset, type val) \
49{ \
50 *(hose->cfg_addr) = dev | (offset & 0xfc) | 0x80000000; \
51 sync(); \
52 cfg_##rw(val, hose->cfg_data + (offset & mask), type, op); \
53 return 0; \
54}
Stefan Roesec157d8e2005-08-01 16:41:48 +020055#elif defined(CONFIG_440_GX) || defined(CONFIG_440_EP) || defined(CONFIG_440_GR)
wdenk3c74e322004-02-22 23:46:08 +000056#define INDIRECT_PCI_OP(rw, size, type, op, mask) \
57static int \
58indirect_##rw##_config_##size(struct pci_controller *hose, \
59 pci_dev_t dev, int offset, type val) \
60{ \
61 if (PCI_BUS(dev) > 0) \
62 out_le32(hose->cfg_addr, dev | (offset & 0xfc) | 0x80000001); \
63 else \
64 out_le32(hose->cfg_addr, dev | (offset & 0xfc) | 0x80000000); \
65 cfg_##rw(val, hose->cfg_data + (offset & mask), type, op); \
66 return 0; \
67}
wdenk4d75a502003-03-25 16:50:56 +000068#else
wdenkaffae2b2002-08-17 09:36:01 +000069#define INDIRECT_PCI_OP(rw, size, type, op, mask) \
70static int \
71indirect_##rw##_config_##size(struct pci_controller *hose, \
72 pci_dev_t dev, int offset, type val) \
73{ \
74 out_le32(hose->cfg_addr, dev | (offset & 0xfc) | 0x80000000); \
75 cfg_##rw(val, hose->cfg_data + (offset & mask), type, op); \
76 return 0; \
77}
wdenk4d75a502003-03-25 16:50:56 +000078#endif
wdenkaffae2b2002-08-17 09:36:01 +000079
80#define INDIRECT_PCI_OP_ERRATA6(rw, size, type, op, mask) \
81static int \
82indirect_##rw##_config_##size(struct pci_controller *hose, \
83 pci_dev_t dev, int offset, type val) \
84{ \
85 unsigned int msr = mfmsr(); \
86 mtmsr(msr & ~(MSR_EE | MSR_CE)); \
87 out_le32(hose->cfg_addr, dev | (offset & 0xfc) | 0x80000000); \
88 cfg_##rw(val, hose->cfg_data + (offset & mask), type, op); \
89 out_le32(hose->cfg_addr, 0x00000000); \
90 mtmsr(msr); \
91 return 0; \
92}
93
94INDIRECT_PCI_OP(read, byte, u8 *, in_8, 3)
95INDIRECT_PCI_OP(read, word, u16 *, in_le16, 2)
96INDIRECT_PCI_OP(read, dword, u32 *, in_le32, 0)
97#ifdef CONFIG_405GP
98INDIRECT_PCI_OP_ERRATA6(write, byte, u8, out_8, 3)
99INDIRECT_PCI_OP_ERRATA6(write, word, u16, out_le16, 2)
100INDIRECT_PCI_OP_ERRATA6(write, dword, u32, out_le32, 0)
101#else
102INDIRECT_PCI_OP(write, byte, u8, out_8, 3)
103INDIRECT_PCI_OP(write, word, u16, out_le16, 2)
104INDIRECT_PCI_OP(write, dword, u32, out_le32, 0)
105#endif
106
107void pci_setup_indirect(struct pci_controller* hose, u32 cfg_addr, u32 cfg_data)
108{
109 pci_set_ops(hose,
110 indirect_read_config_byte,
111 indirect_read_config_word,
112 indirect_read_config_dword,
113 indirect_write_config_byte,
114 indirect_write_config_word,
115 indirect_write_config_dword);
116
117 hose->cfg_addr = (unsigned int *) cfg_addr;
118 hose->cfg_data = (unsigned char *) cfg_data;
119}
120
121#endif
wdenkea909b72002-11-21 23:11:29 +0000122#endif