blob: 3af511b38de969c542a9b60d5ea75d961d7f5a0f [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
3 * Andreas Heppel <aheppel@sysgo.de>
4 *
5 * (C) Copyright 2002
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00009 */
10
11#ifndef _PCI_H
12#define _PCI_H
13
14/*
15 * Under PCI, each device has 256 bytes of configuration address space,
16 * of which the first 64 bytes are standardized as follows:
17 */
18#define PCI_VENDOR_ID 0x00 /* 16 bits */
19#define PCI_DEVICE_ID 0x02 /* 16 bits */
20#define PCI_COMMAND 0x04 /* 16 bits */
21#define PCI_COMMAND_IO 0x1 /* Enable response in I/O space */
22#define PCI_COMMAND_MEMORY 0x2 /* Enable response in Memory space */
23#define PCI_COMMAND_MASTER 0x4 /* Enable bus mastering */
24#define PCI_COMMAND_SPECIAL 0x8 /* Enable response to special cycles */
25#define PCI_COMMAND_INVALIDATE 0x10 /* Use memory write and invalidate */
26#define PCI_COMMAND_VGA_PALETTE 0x20 /* Enable palette snooping */
27#define PCI_COMMAND_PARITY 0x40 /* Enable parity checking */
28#define PCI_COMMAND_WAIT 0x80 /* Enable address/data stepping */
29#define PCI_COMMAND_SERR 0x100 /* Enable SERR */
30#define PCI_COMMAND_FAST_BACK 0x200 /* Enable back-to-back writes */
31
32#define PCI_STATUS 0x06 /* 16 bits */
33#define PCI_STATUS_CAP_LIST 0x10 /* Support Capability List */
34#define PCI_STATUS_66MHZ 0x20 /* Support 66 Mhz PCI 2.1 bus */
35#define PCI_STATUS_UDF 0x40 /* Support User Definable Features [obsolete] */
36#define PCI_STATUS_FAST_BACK 0x80 /* Accept fast-back to back */
37#define PCI_STATUS_PARITY 0x100 /* Detected parity error */
38#define PCI_STATUS_DEVSEL_MASK 0x600 /* DEVSEL timing */
39#define PCI_STATUS_DEVSEL_FAST 0x000
40#define PCI_STATUS_DEVSEL_MEDIUM 0x200
41#define PCI_STATUS_DEVSEL_SLOW 0x400
42#define PCI_STATUS_SIG_TARGET_ABORT 0x800 /* Set on target abort */
43#define PCI_STATUS_REC_TARGET_ABORT 0x1000 /* Master ack of " */
44#define PCI_STATUS_REC_MASTER_ABORT 0x2000 /* Set on master abort */
45#define PCI_STATUS_SIG_SYSTEM_ERROR 0x4000 /* Set when we drive SERR */
46#define PCI_STATUS_DETECTED_PARITY 0x8000 /* Set on parity error */
47
48#define PCI_CLASS_REVISION 0x08 /* High 24 bits are class, low 8
49 revision */
50#define PCI_REVISION_ID 0x08 /* Revision ID */
51#define PCI_CLASS_PROG 0x09 /* Reg. Level Programming Interface */
52#define PCI_CLASS_DEVICE 0x0a /* Device class */
53#define PCI_CLASS_CODE 0x0b /* Device class code */
Bill Richardson55ae10f2012-10-20 11:44:34 +000054#define PCI_CLASS_CODE_TOO_OLD 0x00
55#define PCI_CLASS_CODE_STORAGE 0x01
56#define PCI_CLASS_CODE_NETWORK 0x02
57#define PCI_CLASS_CODE_DISPLAY 0x03
58#define PCI_CLASS_CODE_MULTIMEDIA 0x04
59#define PCI_CLASS_CODE_MEMORY 0x05
60#define PCI_CLASS_CODE_BRIDGE 0x06
61#define PCI_CLASS_CODE_COMM 0x07
62#define PCI_CLASS_CODE_PERIPHERAL 0x08
63#define PCI_CLASS_CODE_INPUT 0x09
64#define PCI_CLASS_CODE_DOCKING 0x0A
65#define PCI_CLASS_CODE_PROCESSOR 0x0B
66#define PCI_CLASS_CODE_SERIAL 0x0C
67#define PCI_CLASS_CODE_WIRELESS 0x0D
68#define PCI_CLASS_CODE_I2O 0x0E
69#define PCI_CLASS_CODE_SATELLITE 0x0F
70#define PCI_CLASS_CODE_CRYPTO 0x10
71#define PCI_CLASS_CODE_DATA 0x11
72/* Base Class 0x12 - 0xFE is reserved */
73#define PCI_CLASS_CODE_OTHER 0xFF
74
wdenkc6097192002-11-03 00:24:07 +000075#define PCI_CLASS_SUB_CODE 0x0a /* Device sub-class code */
Bill Richardson55ae10f2012-10-20 11:44:34 +000076#define PCI_CLASS_SUB_CODE_TOO_OLD_NOTVGA 0x00
77#define PCI_CLASS_SUB_CODE_TOO_OLD_VGA 0x01
78#define PCI_CLASS_SUB_CODE_STORAGE_SCSI 0x00
79#define PCI_CLASS_SUB_CODE_STORAGE_IDE 0x01
80#define PCI_CLASS_SUB_CODE_STORAGE_FLOPPY 0x02
81#define PCI_CLASS_SUB_CODE_STORAGE_IPIBUS 0x03
82#define PCI_CLASS_SUB_CODE_STORAGE_RAID 0x04
83#define PCI_CLASS_SUB_CODE_STORAGE_ATA 0x05
84#define PCI_CLASS_SUB_CODE_STORAGE_SATA 0x06
85#define PCI_CLASS_SUB_CODE_STORAGE_SAS 0x07
86#define PCI_CLASS_SUB_CODE_STORAGE_OTHER 0x80
87#define PCI_CLASS_SUB_CODE_NETWORK_ETHERNET 0x00
88#define PCI_CLASS_SUB_CODE_NETWORK_TOKENRING 0x01
89#define PCI_CLASS_SUB_CODE_NETWORK_FDDI 0x02
90#define PCI_CLASS_SUB_CODE_NETWORK_ATM 0x03
91#define PCI_CLASS_SUB_CODE_NETWORK_ISDN 0x04
92#define PCI_CLASS_SUB_CODE_NETWORK_WORLDFIP 0x05
93#define PCI_CLASS_SUB_CODE_NETWORK_PICMG 0x06
94#define PCI_CLASS_SUB_CODE_NETWORK_OTHER 0x80
95#define PCI_CLASS_SUB_CODE_DISPLAY_VGA 0x00
96#define PCI_CLASS_SUB_CODE_DISPLAY_XGA 0x01
97#define PCI_CLASS_SUB_CODE_DISPLAY_3D 0x02
98#define PCI_CLASS_SUB_CODE_DISPLAY_OTHER 0x80
99#define PCI_CLASS_SUB_CODE_MULTIMEDIA_VIDEO 0x00
100#define PCI_CLASS_SUB_CODE_MULTIMEDIA_AUDIO 0x01
101#define PCI_CLASS_SUB_CODE_MULTIMEDIA_PHONE 0x02
102#define PCI_CLASS_SUB_CODE_MULTIMEDIA_OTHER 0x80
103#define PCI_CLASS_SUB_CODE_MEMORY_RAM 0x00
104#define PCI_CLASS_SUB_CODE_MEMORY_FLASH 0x01
105#define PCI_CLASS_SUB_CODE_MEMORY_OTHER 0x80
106#define PCI_CLASS_SUB_CODE_BRIDGE_HOST 0x00
107#define PCI_CLASS_SUB_CODE_BRIDGE_ISA 0x01
108#define PCI_CLASS_SUB_CODE_BRIDGE_EISA 0x02
109#define PCI_CLASS_SUB_CODE_BRIDGE_MCA 0x03
110#define PCI_CLASS_SUB_CODE_BRIDGE_PCI 0x04
111#define PCI_CLASS_SUB_CODE_BRIDGE_PCMCIA 0x05
112#define PCI_CLASS_SUB_CODE_BRIDGE_NUBUS 0x06
113#define PCI_CLASS_SUB_CODE_BRIDGE_CARDBUS 0x07
114#define PCI_CLASS_SUB_CODE_BRIDGE_RACEWAY 0x08
115#define PCI_CLASS_SUB_CODE_BRIDGE_SEMI_PCI 0x09
116#define PCI_CLASS_SUB_CODE_BRIDGE_INFINIBAND 0x0A
117#define PCI_CLASS_SUB_CODE_BRIDGE_OTHER 0x80
118#define PCI_CLASS_SUB_CODE_COMM_SERIAL 0x00
119#define PCI_CLASS_SUB_CODE_COMM_PARALLEL 0x01
120#define PCI_CLASS_SUB_CODE_COMM_MULTIPORT 0x02
121#define PCI_CLASS_SUB_CODE_COMM_MODEM 0x03
122#define PCI_CLASS_SUB_CODE_COMM_GPIB 0x04
123#define PCI_CLASS_SUB_CODE_COMM_SMARTCARD 0x05
124#define PCI_CLASS_SUB_CODE_COMM_OTHER 0x80
125#define PCI_CLASS_SUB_CODE_PERIPHERAL_PIC 0x00
126#define PCI_CLASS_SUB_CODE_PERIPHERAL_DMA 0x01
127#define PCI_CLASS_SUB_CODE_PERIPHERAL_TIMER 0x02
128#define PCI_CLASS_SUB_CODE_PERIPHERAL_RTC 0x03
129#define PCI_CLASS_SUB_CODE_PERIPHERAL_HOTPLUG 0x04
130#define PCI_CLASS_SUB_CODE_PERIPHERAL_SD 0x05
131#define PCI_CLASS_SUB_CODE_PERIPHERAL_OTHER 0x80
132#define PCI_CLASS_SUB_CODE_INPUT_KEYBOARD 0x00
133#define PCI_CLASS_SUB_CODE_INPUT_DIGITIZER 0x01
134#define PCI_CLASS_SUB_CODE_INPUT_MOUSE 0x02
135#define PCI_CLASS_SUB_CODE_INPUT_SCANNER 0x03
136#define PCI_CLASS_SUB_CODE_INPUT_GAMEPORT 0x04
137#define PCI_CLASS_SUB_CODE_INPUT_OTHER 0x80
138#define PCI_CLASS_SUB_CODE_DOCKING_GENERIC 0x00
139#define PCI_CLASS_SUB_CODE_DOCKING_OTHER 0x80
140#define PCI_CLASS_SUB_CODE_PROCESSOR_386 0x00
141#define PCI_CLASS_SUB_CODE_PROCESSOR_486 0x01
142#define PCI_CLASS_SUB_CODE_PROCESSOR_PENTIUM 0x02
143#define PCI_CLASS_SUB_CODE_PROCESSOR_ALPHA 0x10
144#define PCI_CLASS_SUB_CODE_PROCESSOR_POWERPC 0x20
145#define PCI_CLASS_SUB_CODE_PROCESSOR_MIPS 0x30
146#define PCI_CLASS_SUB_CODE_PROCESSOR_COPROC 0x40
147#define PCI_CLASS_SUB_CODE_SERIAL_1394 0x00
148#define PCI_CLASS_SUB_CODE_SERIAL_ACCESSBUS 0x01
149#define PCI_CLASS_SUB_CODE_SERIAL_SSA 0x02
150#define PCI_CLASS_SUB_CODE_SERIAL_USB 0x03
151#define PCI_CLASS_SUB_CODE_SERIAL_FIBRECHAN 0x04
152#define PCI_CLASS_SUB_CODE_SERIAL_SMBUS 0x05
153#define PCI_CLASS_SUB_CODE_SERIAL_INFINIBAND 0x06
154#define PCI_CLASS_SUB_CODE_SERIAL_IPMI 0x07
155#define PCI_CLASS_SUB_CODE_SERIAL_SERCOS 0x08
156#define PCI_CLASS_SUB_CODE_SERIAL_CANBUS 0x09
157#define PCI_CLASS_SUB_CODE_WIRELESS_IRDA 0x00
158#define PCI_CLASS_SUB_CODE_WIRELESS_IR 0x01
159#define PCI_CLASS_SUB_CODE_WIRELESS_RF 0x10
160#define PCI_CLASS_SUB_CODE_WIRELESS_BLUETOOTH 0x11
161#define PCI_CLASS_SUB_CODE_WIRELESS_BROADBAND 0x12
162#define PCI_CLASS_SUB_CODE_WIRELESS_80211A 0x20
163#define PCI_CLASS_SUB_CODE_WIRELESS_80211B 0x21
164#define PCI_CLASS_SUB_CODE_WIRELESS_OTHER 0x80
165#define PCI_CLASS_SUB_CODE_I2O_V1_0 0x00
166#define PCI_CLASS_SUB_CODE_SATELLITE_TV 0x01
167#define PCI_CLASS_SUB_CODE_SATELLITE_AUDIO 0x02
168#define PCI_CLASS_SUB_CODE_SATELLITE_VOICE 0x03
169#define PCI_CLASS_SUB_CODE_SATELLITE_DATA 0x04
170#define PCI_CLASS_SUB_CODE_CRYPTO_NETWORK 0x00
171#define PCI_CLASS_SUB_CODE_CRYPTO_ENTERTAINMENT 0x10
172#define PCI_CLASS_SUB_CODE_CRYPTO_OTHER 0x80
173#define PCI_CLASS_SUB_CODE_DATA_DPIO 0x00
174#define PCI_CLASS_SUB_CODE_DATA_PERFCNTR 0x01
175#define PCI_CLASS_SUB_CODE_DATA_COMMSYNC 0x10
176#define PCI_CLASS_SUB_CODE_DATA_MGMT 0x20
177#define PCI_CLASS_SUB_CODE_DATA_OTHER 0x80
wdenkc6097192002-11-03 00:24:07 +0000178
179#define PCI_CACHE_LINE_SIZE 0x0c /* 8 bits */
180#define PCI_LATENCY_TIMER 0x0d /* 8 bits */
181#define PCI_HEADER_TYPE 0x0e /* 8 bits */
182#define PCI_HEADER_TYPE_NORMAL 0
183#define PCI_HEADER_TYPE_BRIDGE 1
184#define PCI_HEADER_TYPE_CARDBUS 2
185
186#define PCI_BIST 0x0f /* 8 bits */
187#define PCI_BIST_CODE_MASK 0x0f /* Return result */
188#define PCI_BIST_START 0x40 /* 1 to start BIST, 2 secs or less */
189#define PCI_BIST_CAPABLE 0x80 /* 1 if BIST capable */
190
191/*
192 * Base addresses specify locations in memory or I/O space.
193 * Decoded size can be determined by writing a value of
194 * 0xffffffff to the register, and reading it back. Only
195 * 1 bits are decoded.
196 */
197#define PCI_BASE_ADDRESS_0 0x10 /* 32 bits */
198#define PCI_BASE_ADDRESS_1 0x14 /* 32 bits [htype 0,1 only] */
199#define PCI_BASE_ADDRESS_2 0x18 /* 32 bits [htype 0 only] */
200#define PCI_BASE_ADDRESS_3 0x1c /* 32 bits */
201#define PCI_BASE_ADDRESS_4 0x20 /* 32 bits */
202#define PCI_BASE_ADDRESS_5 0x24 /* 32 bits */
203#define PCI_BASE_ADDRESS_SPACE 0x01 /* 0 = memory, 1 = I/O */
204#define PCI_BASE_ADDRESS_SPACE_IO 0x01
205#define PCI_BASE_ADDRESS_SPACE_MEMORY 0x00
206#define PCI_BASE_ADDRESS_MEM_TYPE_MASK 0x06
207#define PCI_BASE_ADDRESS_MEM_TYPE_32 0x00 /* 32 bit address */
208#define PCI_BASE_ADDRESS_MEM_TYPE_1M 0x02 /* Below 1M [obsolete] */
209#define PCI_BASE_ADDRESS_MEM_TYPE_64 0x04 /* 64 bit address */
210#define PCI_BASE_ADDRESS_MEM_PREFETCH 0x08 /* prefetchable? */
Kumar Gala30e76d52008-10-21 08:36:08 -0500211#define PCI_BASE_ADDRESS_MEM_MASK (~0x0fULL)
212#define PCI_BASE_ADDRESS_IO_MASK (~0x03ULL)
wdenkc6097192002-11-03 00:24:07 +0000213/* bit 1 is reserved if address_space = 1 */
214
215/* Header type 0 (normal devices) */
216#define PCI_CARDBUS_CIS 0x28
217#define PCI_SUBSYSTEM_VENDOR_ID 0x2c
218#define PCI_SUBSYSTEM_ID 0x2e
219#define PCI_ROM_ADDRESS 0x30 /* Bits 31..11 are address, 10..1 reserved */
220#define PCI_ROM_ADDRESS_ENABLE 0x01
Kumar Gala30e76d52008-10-21 08:36:08 -0500221#define PCI_ROM_ADDRESS_MASK (~0x7ffULL)
wdenkc6097192002-11-03 00:24:07 +0000222
223#define PCI_CAPABILITY_LIST 0x34 /* Offset of first capability list entry */
224
225/* 0x35-0x3b are reserved */
226#define PCI_INTERRUPT_LINE 0x3c /* 8 bits */
227#define PCI_INTERRUPT_PIN 0x3d /* 8 bits */
228#define PCI_MIN_GNT 0x3e /* 8 bits */
229#define PCI_MAX_LAT 0x3f /* 8 bits */
230
231/* Header type 1 (PCI-to-PCI bridges) */
232#define PCI_PRIMARY_BUS 0x18 /* Primary bus number */
233#define PCI_SECONDARY_BUS 0x19 /* Secondary bus number */
234#define PCI_SUBORDINATE_BUS 0x1a /* Highest bus number behind the bridge */
235#define PCI_SEC_LATENCY_TIMER 0x1b /* Latency timer for secondary interface */
236#define PCI_IO_BASE 0x1c /* I/O range behind the bridge */
237#define PCI_IO_LIMIT 0x1d
238#define PCI_IO_RANGE_TYPE_MASK 0x0f /* I/O bridging type */
239#define PCI_IO_RANGE_TYPE_16 0x00
240#define PCI_IO_RANGE_TYPE_32 0x01
241#define PCI_IO_RANGE_MASK ~0x0f
242#define PCI_SEC_STATUS 0x1e /* Secondary status register, only bit 14 used */
243#define PCI_MEMORY_BASE 0x20 /* Memory range behind */
244#define PCI_MEMORY_LIMIT 0x22
245#define PCI_MEMORY_RANGE_TYPE_MASK 0x0f
246#define PCI_MEMORY_RANGE_MASK ~0x0f
247#define PCI_PREF_MEMORY_BASE 0x24 /* Prefetchable memory range behind */
248#define PCI_PREF_MEMORY_LIMIT 0x26
249#define PCI_PREF_RANGE_TYPE_MASK 0x0f
250#define PCI_PREF_RANGE_TYPE_32 0x00
251#define PCI_PREF_RANGE_TYPE_64 0x01
252#define PCI_PREF_RANGE_MASK ~0x0f
253#define PCI_PREF_BASE_UPPER32 0x28 /* Upper half of prefetchable memory range */
254#define PCI_PREF_LIMIT_UPPER32 0x2c
255#define PCI_IO_BASE_UPPER16 0x30 /* Upper half of I/O addresses */
256#define PCI_IO_LIMIT_UPPER16 0x32
257/* 0x34 same as for htype 0 */
258/* 0x35-0x3b is reserved */
259#define PCI_ROM_ADDRESS1 0x38 /* Same as PCI_ROM_ADDRESS, but for htype 1 */
260/* 0x3c-0x3d are same as for htype 0 */
261#define PCI_BRIDGE_CONTROL 0x3e
262#define PCI_BRIDGE_CTL_PARITY 0x01 /* Enable parity detection on secondary interface */
263#define PCI_BRIDGE_CTL_SERR 0x02 /* The same for SERR forwarding */
264#define PCI_BRIDGE_CTL_NO_ISA 0x04 /* Disable bridging of ISA ports */
265#define PCI_BRIDGE_CTL_VGA 0x08 /* Forward VGA addresses */
266#define PCI_BRIDGE_CTL_MASTER_ABORT 0x20 /* Report master aborts */
267#define PCI_BRIDGE_CTL_BUS_RESET 0x40 /* Secondary bus reset */
268#define PCI_BRIDGE_CTL_FAST_BACK 0x80 /* Fast Back2Back enabled on secondary interface */
269
Stefan Roesec157d8e2005-08-01 16:41:48 +0200270/* From 440ep */
271#define PCI_ERREN 0x48 /* Error Enable */
272#define PCI_ERRSTS 0x49 /* Error Status */
273#define PCI_BRDGOPT1 0x4A /* PCI Bridge Options 1 */
274#define PCI_PLBSESR0 0x4C /* PCI PLB Slave Error Syndrome 0 */
275#define PCI_PLBSESR1 0x50 /* PCI PLB Slave Error Syndrome 1 */
276#define PCI_PLBSEAR 0x54 /* PCI PLB Slave Error Address */
277#define PCI_CAPID 0x58 /* Capability Identifier */
278#define PCI_NEXTITEMPTR 0x59 /* Next Item Pointer */
279#define PCI_PMC 0x5A /* Power Management Capabilities */
280#define PCI_PMCSR 0x5C /* Power Management Control Status */
281#define PCI_PMCSRBSE 0x5E /* PMCSR PCI to PCI Bridge Support Extensions */
282#define PCI_BRDGOPT2 0x60 /* PCI Bridge Options 2 */
283#define PCI_PMSCRR 0x64 /* Power Management State Change Request Re. */
284
wdenkc6097192002-11-03 00:24:07 +0000285/* Header type 2 (CardBus bridges) */
286#define PCI_CB_CAPABILITY_LIST 0x14
287/* 0x15 reserved */
288#define PCI_CB_SEC_STATUS 0x16 /* Secondary status */
289#define PCI_CB_PRIMARY_BUS 0x18 /* PCI bus number */
290#define PCI_CB_CARD_BUS 0x19 /* CardBus bus number */
291#define PCI_CB_SUBORDINATE_BUS 0x1a /* Subordinate bus number */
292#define PCI_CB_LATENCY_TIMER 0x1b /* CardBus latency timer */
293#define PCI_CB_MEMORY_BASE_0 0x1c
294#define PCI_CB_MEMORY_LIMIT_0 0x20
295#define PCI_CB_MEMORY_BASE_1 0x24
296#define PCI_CB_MEMORY_LIMIT_1 0x28
297#define PCI_CB_IO_BASE_0 0x2c
298#define PCI_CB_IO_BASE_0_HI 0x2e
299#define PCI_CB_IO_LIMIT_0 0x30
300#define PCI_CB_IO_LIMIT_0_HI 0x32
301#define PCI_CB_IO_BASE_1 0x34
302#define PCI_CB_IO_BASE_1_HI 0x36
303#define PCI_CB_IO_LIMIT_1 0x38
304#define PCI_CB_IO_LIMIT_1_HI 0x3a
305#define PCI_CB_IO_RANGE_MASK ~0x03
306/* 0x3c-0x3d are same as for htype 0 */
307#define PCI_CB_BRIDGE_CONTROL 0x3e
308#define PCI_CB_BRIDGE_CTL_PARITY 0x01 /* Similar to standard bridge control register */
309#define PCI_CB_BRIDGE_CTL_SERR 0x02
310#define PCI_CB_BRIDGE_CTL_ISA 0x04
311#define PCI_CB_BRIDGE_CTL_VGA 0x08
312#define PCI_CB_BRIDGE_CTL_MASTER_ABORT 0x20
313#define PCI_CB_BRIDGE_CTL_CB_RESET 0x40 /* CardBus reset */
314#define PCI_CB_BRIDGE_CTL_16BIT_INT 0x80 /* Enable interrupt for 16-bit cards */
315#define PCI_CB_BRIDGE_CTL_PREFETCH_MEM0 0x100 /* Prefetch enable for both memory regions */
316#define PCI_CB_BRIDGE_CTL_PREFETCH_MEM1 0x200
317#define PCI_CB_BRIDGE_CTL_POST_WRITES 0x400
318#define PCI_CB_SUBSYSTEM_VENDOR_ID 0x40
319#define PCI_CB_SUBSYSTEM_ID 0x42
320#define PCI_CB_LEGACY_MODE_BASE 0x44 /* 16-bit PC Card legacy mode base address (ExCa) */
321/* 0x48-0x7f reserved */
322
323/* Capability lists */
324
325#define PCI_CAP_LIST_ID 0 /* Capability ID */
326#define PCI_CAP_ID_PM 0x01 /* Power Management */
327#define PCI_CAP_ID_AGP 0x02 /* Accelerated Graphics Port */
328#define PCI_CAP_ID_VPD 0x03 /* Vital Product Data */
329#define PCI_CAP_ID_SLOTID 0x04 /* Slot Identification */
330#define PCI_CAP_ID_MSI 0x05 /* Message Signalled Interrupts */
331#define PCI_CAP_ID_CHSWP 0x06 /* CompactPCI HotSwap */
Kumar Gala8295b942009-08-05 07:49:27 -0500332#define PCI_CAP_ID_EXP 0x10 /* PCI Express */
wdenkc6097192002-11-03 00:24:07 +0000333#define PCI_CAP_LIST_NEXT 1 /* Next capability in the list */
334#define PCI_CAP_FLAGS 2 /* Capability defined flags (16 bits) */
335#define PCI_CAP_SIZEOF 4
336
337/* Power Management Registers */
338
339#define PCI_PM_CAP_VER_MASK 0x0007 /* Version */
340#define PCI_PM_CAP_PME_CLOCK 0x0008 /* PME clock required */
341#define PCI_PM_CAP_AUX_POWER 0x0010 /* Auxilliary power support */
342#define PCI_PM_CAP_DSI 0x0020 /* Device specific initialization */
343#define PCI_PM_CAP_D1 0x0200 /* D1 power state support */
344#define PCI_PM_CAP_D2 0x0400 /* D2 power state support */
345#define PCI_PM_CAP_PME 0x0800 /* PME pin supported */
346#define PCI_PM_CTRL 4 /* PM control and status register */
347#define PCI_PM_CTRL_STATE_MASK 0x0003 /* Current power state (D0 to D3) */
348#define PCI_PM_CTRL_PME_ENABLE 0x0100 /* PME pin enable */
349#define PCI_PM_CTRL_DATA_SEL_MASK 0x1e00 /* Data select (??) */
350#define PCI_PM_CTRL_DATA_SCALE_MASK 0x6000 /* Data scale (??) */
351#define PCI_PM_CTRL_PME_STATUS 0x8000 /* PME pin status */
352#define PCI_PM_PPB_EXTENSIONS 6 /* PPB support extensions (??) */
353#define PCI_PM_PPB_B2_B3 0x40 /* Stop clock when in D3hot (??) */
354#define PCI_PM_BPCC_ENABLE 0x80 /* Bus power/clock control enable (??) */
355#define PCI_PM_DATA_REGISTER 7 /* (??) */
356#define PCI_PM_SIZEOF 8
357
358/* AGP registers */
359
360#define PCI_AGP_VERSION 2 /* BCD version number */
361#define PCI_AGP_RFU 3 /* Rest of capability flags */
362#define PCI_AGP_STATUS 4 /* Status register */
363#define PCI_AGP_STATUS_RQ_MASK 0xff000000 /* Maximum number of requests - 1 */
364#define PCI_AGP_STATUS_SBA 0x0200 /* Sideband addressing supported */
365#define PCI_AGP_STATUS_64BIT 0x0020 /* 64-bit addressing supported */
366#define PCI_AGP_STATUS_FW 0x0010 /* FW transfers supported */
367#define PCI_AGP_STATUS_RATE4 0x0004 /* 4x transfer rate supported */
368#define PCI_AGP_STATUS_RATE2 0x0002 /* 2x transfer rate supported */
369#define PCI_AGP_STATUS_RATE1 0x0001 /* 1x transfer rate supported */
370#define PCI_AGP_COMMAND 8 /* Control register */
371#define PCI_AGP_COMMAND_RQ_MASK 0xff000000 /* Master: Maximum number of requests */
372#define PCI_AGP_COMMAND_SBA 0x0200 /* Sideband addressing enabled */
373#define PCI_AGP_COMMAND_AGP 0x0100 /* Allow processing of AGP transactions */
374#define PCI_AGP_COMMAND_64BIT 0x0020 /* Allow processing of 64-bit addresses */
375#define PCI_AGP_COMMAND_FW 0x0010 /* Force FW transfers */
376#define PCI_AGP_COMMAND_RATE4 0x0004 /* Use 4x rate */
377#define PCI_AGP_COMMAND_RATE2 0x0002 /* Use 4x rate */
378#define PCI_AGP_COMMAND_RATE1 0x0001 /* Use 4x rate */
379#define PCI_AGP_SIZEOF 12
380
Matthew McClintockf0e6f572006-06-28 10:44:49 -0500381/* PCI-X registers */
382
383#define PCI_X_CMD_DPERR_E 0x0001 /* Data Parity Error Recovery Enable */
384#define PCI_X_CMD_ERO 0x0002 /* Enable Relaxed Ordering */
385#define PCI_X_CMD_MAX_READ 0x0000 /* Max Memory Read Byte Count */
386#define PCI_X_CMD_MAX_SPLIT 0x0030 /* Max Outstanding Split Transactions */
387#define PCI_X_CMD_VERSION(x) (((x) >> 12) & 3) /* Version */
388
389
wdenkc6097192002-11-03 00:24:07 +0000390/* Slot Identification */
391
392#define PCI_SID_ESR 2 /* Expansion Slot Register */
393#define PCI_SID_ESR_NSLOTS 0x1f /* Number of expansion slots available */
394#define PCI_SID_ESR_FIC 0x20 /* First In Chassis Flag */
395#define PCI_SID_CHASSIS_NR 3 /* Chassis Number */
396
397/* Message Signalled Interrupts registers */
398
399#define PCI_MSI_FLAGS 2 /* Various flags */
400#define PCI_MSI_FLAGS_64BIT 0x80 /* 64-bit addresses allowed */
401#define PCI_MSI_FLAGS_QSIZE 0x70 /* Message queue size configured */
402#define PCI_MSI_FLAGS_QMASK 0x0e /* Maximum queue size available */
403#define PCI_MSI_FLAGS_ENABLE 0x01 /* MSI feature enabled */
404#define PCI_MSI_RFU 3 /* Rest of capability flags */
405#define PCI_MSI_ADDRESS_LO 4 /* Lower 32 bits */
406#define PCI_MSI_ADDRESS_HI 8 /* Upper 32 bits (if PCI_MSI_FLAGS_64BIT set) */
407#define PCI_MSI_DATA_32 8 /* 16 bits of data for 32-bit devices */
408#define PCI_MSI_DATA_64 12 /* 16 bits of data for 64-bit devices */
409
410#define PCI_MAX_PCI_DEVICES 32
411#define PCI_MAX_PCI_FUNCTIONS 8
412
Zhao Qiang287df012013-10-12 13:46:33 +0800413#define PCI_FIND_CAP_TTL 0x48
414#define CAP_START_POS 0x40
415
wdenkc6097192002-11-03 00:24:07 +0000416/* Include the ID list */
417
418#include <pci_ids.h>
419
Paul Burtonfa5cec02013-11-08 11:18:47 +0000420#ifndef __ASSEMBLY__
421
Kumar Gala30e76d52008-10-21 08:36:08 -0500422#ifdef CONFIG_SYS_PCI_64BIT
423typedef u64 pci_addr_t;
424typedef u64 pci_size_t;
425#else
426typedef u32 pci_addr_t;
427typedef u32 pci_size_t;
428#endif
wdenkc6097192002-11-03 00:24:07 +0000429
Kumar Gala30e76d52008-10-21 08:36:08 -0500430struct pci_region {
431 pci_addr_t bus_start; /* Start on the bus */
432 phys_addr_t phys_start; /* Start in physical address space */
433 pci_size_t size; /* Size */
434 unsigned long flags; /* Resource flags */
435
436 pci_addr_t bus_lower;
wdenkc6097192002-11-03 00:24:07 +0000437};
438
439#define PCI_REGION_MEM 0x00000000 /* PCI memory space */
440#define PCI_REGION_IO 0x00000001 /* PCI IO space */
441#define PCI_REGION_TYPE 0x00000001
Kumar Galaa1790122006-01-11 13:24:15 -0600442#define PCI_REGION_PREFETCH 0x00000008 /* prefetchable PCI memory */
wdenkc6097192002-11-03 00:24:07 +0000443
Kumar Galaff4e66e2009-02-06 09:49:31 -0600444#define PCI_REGION_SYS_MEMORY 0x00000100 /* System memory */
wdenkc6097192002-11-03 00:24:07 +0000445#define PCI_REGION_RO 0x00000200 /* Read-only memory */
446
Simon Glassbc3442a2013-06-11 11:14:33 -0700447static inline void pci_set_region(struct pci_region *reg,
Kumar Gala30e76d52008-10-21 08:36:08 -0500448 pci_addr_t bus_start,
Becky Bruce36f32672008-05-07 13:24:57 -0500449 phys_addr_t phys_start,
Kumar Gala30e76d52008-10-21 08:36:08 -0500450 pci_size_t size,
wdenkc6097192002-11-03 00:24:07 +0000451 unsigned long flags) {
452 reg->bus_start = bus_start;
453 reg->phys_start = phys_start;
454 reg->size = size;
455 reg->flags = flags;
456}
457
458typedef int pci_dev_t;
459
Simon Glassff3e0772015-03-05 12:25:25 -0700460#define PCI_BUS(d) (((d) >> 16) & 0xff)
461#define PCI_DEV(d) (((d) >> 11) & 0x1f)
462#define PCI_FUNC(d) (((d) >> 8) & 0x7)
463#define PCI_DEVFN(d, f) ((d) << 11 | (f) << 8)
464#define PCI_MASK_BUS(bdf) ((bdf) & 0xffff)
465#define PCI_ADD_BUS(bus, devfn) (((bus) << 16) | (devfn))
466#define PCI_BDF(b, d, f) ((b) << 16 | PCI_DEVFN(d, f))
467#define PCI_VENDEV(v, d) (((v) << 16) | (d))
468#define PCI_ANY_ID (~0)
wdenkc6097192002-11-03 00:24:07 +0000469
470struct pci_device_id {
471 unsigned int vendor, device; /* Vendor and device ID or PCI_ANY_ID */
472};
473
474struct pci_controller;
475
476struct pci_config_table {
477 unsigned int vendor, device; /* Vendor and device ID or PCI_ANY_ID */
478 unsigned int class; /* Class ID, or PCI_ANY_ID */
479 unsigned int bus; /* Bus number, or PCI_ANY_ID */
480 unsigned int dev; /* Device number, or PCI_ANY_ID */
481 unsigned int func; /* Function number, or PCI_ANY_ID */
482
483 void (*config_device)(struct pci_controller* hose, pci_dev_t dev,
484 struct pci_config_table *);
485 unsigned long priv[3];
486};
487
Wolfgang Denk993a2272006-03-12 16:54:11 +0100488extern void pci_cfgfunc_do_nothing(struct pci_controller* hose, pci_dev_t dev,
489 struct pci_config_table *);
wdenkc6097192002-11-03 00:24:07 +0000490extern void pci_cfgfunc_config_device(struct pci_controller* hose, pci_dev_t dev,
491 struct pci_config_table *);
492
493#define MAX_PCI_REGIONS 7
494
Anton Vorontsovfd6646c2009-01-08 04:26:12 +0300495#define INDIRECT_TYPE_NO_PCIE_LINK 1
496
wdenkc6097192002-11-03 00:24:07 +0000497/*
498 * Structure of a PCI controller (host bridge)
499 */
500struct pci_controller {
Simon Glassff3e0772015-03-05 12:25:25 -0700501#ifdef CONFIG_DM_PCI
502 struct udevice *bus;
503 struct udevice *ctlr;
504#else
wdenkc6097192002-11-03 00:24:07 +0000505 struct pci_controller *next;
Simon Glassff3e0772015-03-05 12:25:25 -0700506#endif
wdenkc6097192002-11-03 00:24:07 +0000507
508 int first_busno;
509 int last_busno;
510
511 volatile unsigned int *cfg_addr;
512 volatile unsigned char *cfg_data;
513
Anton Vorontsovfd6646c2009-01-08 04:26:12 +0300514 int indirect_type;
515
Simon Glassaec241d2015-06-07 08:50:40 -0600516 /*
517 * TODO(sjg@chromium.org): With driver model we use struct
518 * pci_controller for both the controller and any bridge devices
519 * attached to it. But there is only one region list and it is in the
520 * top-level controller.
521 *
522 * This could be changed so that struct pci_controller is only used
523 * for PCI controllers and a separate UCLASS (or perhaps
524 * UCLASS_PCI_GENERIC) is used for bridges.
525 */
wdenkc6097192002-11-03 00:24:07 +0000526 struct pci_region regions[MAX_PCI_REGIONS];
527 int region_count;
528
529 struct pci_config_table *config_table;
530
531 void (*fixup_irq)(struct pci_controller *, pci_dev_t);
Simon Glassff3e0772015-03-05 12:25:25 -0700532#ifndef CONFIG_DM_PCI
wdenkc6097192002-11-03 00:24:07 +0000533 /* Low-level architecture-dependent routines */
534 int (*read_byte)(struct pci_controller*, pci_dev_t, int where, u8 *);
535 int (*read_word)(struct pci_controller*, pci_dev_t, int where, u16 *);
536 int (*read_dword)(struct pci_controller*, pci_dev_t, int where, u32 *);
537 int (*write_byte)(struct pci_controller*, pci_dev_t, int where, u8);
538 int (*write_word)(struct pci_controller*, pci_dev_t, int where, u16);
539 int (*write_dword)(struct pci_controller*, pci_dev_t, int where, u32);
Simon Glassff3e0772015-03-05 12:25:25 -0700540#endif
wdenkc6097192002-11-03 00:24:07 +0000541
542 /* Used by auto config */
Kumar Galaa1790122006-01-11 13:24:15 -0600543 struct pci_region *pci_mem, *pci_io, *pci_prefetch;
wdenkc6097192002-11-03 00:24:07 +0000544
545 /* Used by ppc405 autoconfig*/
546 struct pci_region *pci_fb;
Simon Glassff3e0772015-03-05 12:25:25 -0700547#ifndef CONFIG_DM_PCI
wdenkc7de8292002-11-19 11:04:11 +0000548 int current_busno;
Leo Liu10fa8d72011-01-19 19:50:47 +0800549
550 void *priv_data;
Simon Glassff3e0772015-03-05 12:25:25 -0700551#endif
wdenkc6097192002-11-03 00:24:07 +0000552};
553
Simon Glassff3e0772015-03-05 12:25:25 -0700554#ifndef CONFIG_DM_PCI
Simon Glassbc3442a2013-06-11 11:14:33 -0700555static inline void pci_set_ops(struct pci_controller *hose,
wdenkc6097192002-11-03 00:24:07 +0000556 int (*read_byte)(struct pci_controller*,
557 pci_dev_t, int where, u8 *),
558 int (*read_word)(struct pci_controller*,
559 pci_dev_t, int where, u16 *),
560 int (*read_dword)(struct pci_controller*,
561 pci_dev_t, int where, u32 *),
562 int (*write_byte)(struct pci_controller*,
563 pci_dev_t, int where, u8),
564 int (*write_word)(struct pci_controller*,
565 pci_dev_t, int where, u16),
566 int (*write_dword)(struct pci_controller*,
567 pci_dev_t, int where, u32)) {
568 hose->read_byte = read_byte;
569 hose->read_word = read_word;
570 hose->read_dword = read_dword;
571 hose->write_byte = write_byte;
572 hose->write_word = write_word;
573 hose->write_dword = write_dword;
574}
Simon Glassff3e0772015-03-05 12:25:25 -0700575#endif
wdenkc6097192002-11-03 00:24:07 +0000576
Gabor Juhos842033e2013-05-30 07:06:12 +0000577#ifdef CONFIG_PCI_INDIRECT_BRIDGE
wdenkc6097192002-11-03 00:24:07 +0000578extern void pci_setup_indirect(struct pci_controller* hose, u32 cfg_addr, u32 cfg_data);
Gabor Juhos842033e2013-05-30 07:06:12 +0000579#endif
wdenkc6097192002-11-03 00:24:07 +0000580
Becky Bruce36f32672008-05-07 13:24:57 -0500581extern phys_addr_t pci_hose_bus_to_phys(struct pci_controller* hose,
Kumar Gala30e76d52008-10-21 08:36:08 -0500582 pci_addr_t addr, unsigned long flags);
583extern pci_addr_t pci_hose_phys_to_bus(struct pci_controller* hose,
584 phys_addr_t addr, unsigned long flags);
wdenkc6097192002-11-03 00:24:07 +0000585
586#define pci_phys_to_bus(dev, addr, flags) \
587 pci_hose_phys_to_bus(pci_bus_to_hose(PCI_BUS(dev)), (addr), (flags))
588#define pci_bus_to_phys(dev, addr, flags) \
589 pci_hose_bus_to_phys(pci_bus_to_hose(PCI_BUS(dev)), (addr), (flags))
590
Becky Bruce6e61fae2009-02-03 18:10:50 -0600591#define pci_virt_to_bus(dev, addr, flags) \
592 pci_hose_phys_to_bus(pci_bus_to_hose(PCI_BUS(dev)), \
593 (virt_to_phys(addr)), (flags))
594#define pci_bus_to_virt(dev, addr, flags, len, map_flags) \
595 map_physmem(pci_hose_bus_to_phys(pci_bus_to_hose(PCI_BUS(dev)), \
596 (addr), (flags)), \
597 (len), (map_flags))
598
599#define pci_phys_to_mem(dev, addr) \
600 pci_phys_to_bus((dev), (addr), PCI_REGION_MEM)
601#define pci_mem_to_phys(dev, addr) \
602 pci_bus_to_phys((dev), (addr), PCI_REGION_MEM)
603#define pci_phys_to_io(dev, addr) pci_phys_to_bus((dev), (addr), PCI_REGION_IO)
604#define pci_io_to_phys(dev, addr) pci_bus_to_phys((dev), (addr), PCI_REGION_IO)
605
606#define pci_virt_to_mem(dev, addr) \
607 pci_virt_to_bus((dev), (addr), PCI_REGION_MEM)
608#define pci_mem_to_virt(dev, addr, len, map_flags) \
609 pci_bus_to_virt((dev), (addr), PCI_REGION_MEM, (len), (map_flags))
610#define pci_virt_to_io(dev, addr) \
611 pci_virt_to_bus((dev), (addr), PCI_REGION_IO)
612#define pci_io_to_virt(dev, addr, len, map_flags) \
613 pci_bus_to_virt((dev), (addr), PCI_REGION_IO, (len), (map_flags))
wdenkc6097192002-11-03 00:24:07 +0000614
615extern int pci_hose_read_config_byte(struct pci_controller *hose,
616 pci_dev_t dev, int where, u8 *val);
617extern int pci_hose_read_config_word(struct pci_controller *hose,
618 pci_dev_t dev, int where, u16 *val);
619extern int pci_hose_read_config_dword(struct pci_controller *hose,
620 pci_dev_t dev, int where, u32 *val);
621extern int pci_hose_write_config_byte(struct pci_controller *hose,
622 pci_dev_t dev, int where, u8 val);
623extern int pci_hose_write_config_word(struct pci_controller *hose,
624 pci_dev_t dev, int where, u16 val);
625extern int pci_hose_write_config_dword(struct pci_controller *hose,
626 pci_dev_t dev, int where, u32 val);
627
Simon Glassff3e0772015-03-05 12:25:25 -0700628#ifndef CONFIG_DM_PCI
wdenkc6097192002-11-03 00:24:07 +0000629extern int pci_read_config_byte(pci_dev_t dev, int where, u8 *val);
630extern int pci_read_config_word(pci_dev_t dev, int where, u16 *val);
631extern int pci_read_config_dword(pci_dev_t dev, int where, u32 *val);
632extern int pci_write_config_byte(pci_dev_t dev, int where, u8 val);
633extern int pci_write_config_word(pci_dev_t dev, int where, u16 val);
634extern int pci_write_config_dword(pci_dev_t dev, int where, u32 val);
Simon Glassff3e0772015-03-05 12:25:25 -0700635#endif
wdenkc6097192002-11-03 00:24:07 +0000636
637extern int pci_hose_read_config_byte_via_dword(struct pci_controller *hose,
638 pci_dev_t dev, int where, u8 *val);
639extern int pci_hose_read_config_word_via_dword(struct pci_controller *hose,
640 pci_dev_t dev, int where, u16 *val);
641extern int pci_hose_write_config_byte_via_dword(struct pci_controller *hose,
642 pci_dev_t dev, int where, u8 val);
643extern int pci_hose_write_config_word_via_dword(struct pci_controller *hose,
644 pci_dev_t dev, int where, u16 val);
645
Becky Bruce6e61fae2009-02-03 18:10:50 -0600646extern void *pci_map_bar(pci_dev_t pdev, int bar, int flags);
wdenkc6097192002-11-03 00:24:07 +0000647extern void pci_register_hose(struct pci_controller* hose);
648extern struct pci_controller* pci_bus_to_hose(int bus);
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600649extern struct pci_controller *find_hose_by_cfg_addr(void *cfg_addr);
wdenkc6097192002-11-03 00:24:07 +0000650
Thierry Reding4efe52b2014-11-12 18:26:49 -0700651extern int pci_skip_dev(struct pci_controller *hose, pci_dev_t dev);
wdenkc6097192002-11-03 00:24:07 +0000652extern int pci_hose_scan(struct pci_controller *hose);
653extern int pci_hose_scan_bus(struct pci_controller *hose, int bus);
654
655extern void pciauto_region_init(struct pci_region* res);
Kumar Gala30e76d52008-10-21 08:36:08 -0500656extern void pciauto_region_align(struct pci_region *res, pci_size_t size);
657extern int pciauto_region_allocate(struct pci_region* res, pci_size_t size, pci_addr_t *bar);
wdenkc6097192002-11-03 00:24:07 +0000658extern void pciauto_setup_device(struct pci_controller *hose,
659 pci_dev_t dev, int bars_num,
660 struct pci_region *mem,
Kumar Galaa1790122006-01-11 13:24:15 -0600661 struct pci_region *prefetch,
wdenkc6097192002-11-03 00:24:07 +0000662 struct pci_region *io);
Linus Walleija3a70722012-03-25 12:13:15 +0000663extern void pciauto_prescan_setup_bridge(struct pci_controller *hose,
664 pci_dev_t dev, int sub_bus);
665extern void pciauto_postscan_setup_bridge(struct pci_controller *hose,
666 pci_dev_t dev, int sub_bus);
Linus Walleija1e47b62012-03-03 10:05:08 +0000667extern void pciauto_config_init(struct pci_controller *hose);
Linus Walleija3a70722012-03-25 12:13:15 +0000668extern int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev);
wdenkc6097192002-11-03 00:24:07 +0000669
670extern pci_dev_t pci_find_device (unsigned int vendor, unsigned int device, int index);
671extern pci_dev_t pci_find_devices (struct pci_device_id *ids, int index);
Simon Glass250e0392015-01-27 22:13:27 -0700672pci_dev_t pci_find_class(unsigned int find_class, int index);
wdenkc6097192002-11-03 00:24:07 +0000673
674extern int pci_hose_config_device(struct pci_controller *hose,
675 pci_dev_t dev,
676 unsigned long io,
Kumar Gala30e76d52008-10-21 08:36:08 -0500677 pci_addr_t mem,
wdenkc6097192002-11-03 00:24:07 +0000678 unsigned long command);
679
Zhao Qiang287df012013-10-12 13:46:33 +0800680extern int pci_hose_find_capability(struct pci_controller *hose, pci_dev_t dev,
681 int cap);
682extern int pci_hose_find_cap_start(struct pci_controller *hose, pci_dev_t dev,
683 u8 hdr_type);
684extern int pci_find_cap(struct pci_controller *hose, pci_dev_t dev, int pos,
685 int cap);
686
Tim Harvey09918662014-08-07 22:49:56 -0700687#ifdef CONFIG_PCI_FIXUP_DEV
688extern void board_pci_fixup_dev(struct pci_controller *hose, pci_dev_t dev,
689 unsigned short vendor,
690 unsigned short device,
691 unsigned short class);
692#endif
693
Peter Tyser983eb9d2010-10-29 17:59:27 -0500694const char * pci_class_str(u8 class);
Anton Vorontsovcc2a8c72009-02-19 18:20:41 +0300695int pci_last_busno(void);
696
Jon Loeliger13a7fcd2006-10-19 11:33:52 -0500697#ifdef CONFIG_MPC85xx
698extern void pci_mpc85xx_init (struct pci_controller *hose);
699#endif
Paul Burtonfa5cec02013-11-08 11:18:47 +0000700
Simon Glasse8a552e2014-11-14 18:18:30 -0700701/**
702 * pci_write_bar32() - Write the address of a BAR including control bits
703 *
704 * This writes a raw address (with control bits) to a bar
705 *
706 * @hose: PCI hose to use
707 * @dev: PCI device to update
708 * @barnum: BAR number (0-5)
709 * @addr: BAR address with control bits
710 */
711void pci_write_bar32(struct pci_controller *hose, pci_dev_t dev, int barnum,
712 u32 addr_and_ctrl);
713
714/**
715 * pci_read_bar32() - read the address of a bar
716 *
717 * @hose: PCI hose to use
718 * @dev: PCI device to inspect
719 * @barnum: BAR number (0-5)
720 * @return address of the bar, masking out any control bits
721 * */
722u32 pci_read_bar32(struct pci_controller *hose, pci_dev_t dev, int barnum);
723
Simon Glass4a2708a2015-01-14 21:37:04 -0700724/**
725 * pciauto_setup_rom() - Set up access to a device ROM
726 *
727 * @hose: PCI hose to use
728 * @dev: PCI device to adjust
729 * @return 0 if done, -ve on error
730 */
731int pciauto_setup_rom(struct pci_controller *hose, pci_dev_t dev);
732
Simon Glassaab67242015-03-05 12:25:24 -0700733/**
734 * pci_hose_find_devices() - Find devices by vendor/device ID
735 *
736 * @hose: PCI hose to search
737 * @busnum: Bus number to search
738 * @ids: PCI vendor/device IDs to look for, terminated by 0, 0 record
739 * @indexp: Pointer to device index to find. To find the first matching
740 * device, pass 0; to find the second, pass 1, etc. This
741 * parameter is decremented for each non-matching device so
742 * can be called repeatedly.
743 */
744pci_dev_t pci_hose_find_devices(struct pci_controller *hose, int busnum,
745 struct pci_device_id *ids, int *indexp);
746
Simon Glassff3e0772015-03-05 12:25:25 -0700747/* Access sizes for PCI reads and writes */
748enum pci_size_t {
749 PCI_SIZE_8,
750 PCI_SIZE_16,
751 PCI_SIZE_32,
752};
753
754struct udevice;
755
756#ifdef CONFIG_DM_PCI
757/**
758 * struct pci_child_platdata - information stored about each PCI device
759 *
760 * Every device on a PCI bus has this per-child data.
761 *
762 * It can be accessed using dev_get_parentdata(dev) if dev->parent is a
763 * PCI bus (i.e. UCLASS_PCI)
764 *
765 * @devfn: Encoded device and function index - see PCI_DEVFN()
766 * @vendor: PCI vendor ID (see pci_ids.h)
767 * @device: PCI device ID (see pci_ids.h)
768 * @class: PCI class, 3 bytes: (base, sub, prog-if)
769 */
770struct pci_child_platdata {
771 int devfn;
772 unsigned short vendor;
773 unsigned short device;
774 unsigned int class;
775};
776
777/* PCI bus operations */
778struct dm_pci_ops {
779 /**
780 * read_config() - Read a PCI configuration value
781 *
782 * PCI buses must support reading and writing configuration values
783 * so that the bus can be scanned and its devices configured.
784 *
785 * Normally PCI_BUS(@bdf) is the same as @bus->seq, but not always.
786 * If bridges exist it is possible to use the top-level bus to
787 * access a sub-bus. In that case @bus will be the top-level bus
788 * and PCI_BUS(bdf) will be a different (higher) value
789 *
790 * @bus: Bus to read from
791 * @bdf: Bus, device and function to read
792 * @offset: Byte offset within the device's configuration space
793 * @valuep: Place to put the returned value
794 * @size: Access size
795 * @return 0 if OK, -ve on error
796 */
797 int (*read_config)(struct udevice *bus, pci_dev_t bdf, uint offset,
798 ulong *valuep, enum pci_size_t size);
799 /**
800 * write_config() - Write a PCI configuration value
801 *
802 * @bus: Bus to write to
803 * @bdf: Bus, device and function to write
804 * @offset: Byte offset within the device's configuration space
805 * @value: Value to write
806 * @size: Access size
807 * @return 0 if OK, -ve on error
808 */
809 int (*write_config)(struct udevice *bus, pci_dev_t bdf, uint offset,
810 ulong value, enum pci_size_t size);
811};
812
813/* Get access to a PCI bus' operations */
814#define pci_get_ops(dev) ((struct dm_pci_ops *)(dev)->driver->ops)
815
816/**
817 * pci_bind_bus_devices() - scan a PCI bus and bind devices
818 *
819 * Scan a PCI bus looking for devices. Bind each one that is found. If
820 * devices are already bound that match the scanned devices, just update the
821 * child data so that the device can be used correctly (this happens when
822 * the device tree describes devices we expect to see on the bus).
823 *
824 * Devices that are bound in this way will use a generic PCI driver which
825 * does nothing. The device can still be accessed but will not provide any
826 * driver interface.
827 *
828 * @bus: Bus containing devices to bind
829 * @return 0 if OK, -ve on error
830 */
831int pci_bind_bus_devices(struct udevice *bus);
832
833/**
834 * pci_auto_config_devices() - configure bus devices ready for use
835 *
836 * This works through all devices on a bus by scanning the driver model
837 * data structures (normally these have been set up by pci_bind_bus_devices()
838 * earlier).
839 *
840 * Space is allocated for each PCI base address register (BAR) so that the
841 * devices are mapped into memory and I/O space ready for use.
842 *
843 * @bus: Bus containing devices to bind
844 * @return 0 if OK, -ve on error
845 */
846int pci_auto_config_devices(struct udevice *bus);
847
848/**
849 * pci_bus_find_bdf() - Find a device given its PCI bus address
850 *
851 * @bdf: PCI device address: bus, device and function -see PCI_BDF()
852 * @devp: Returns the device for this address, if found
853 * @return 0 if OK, -ENODEV if not found
854 */
855int pci_bus_find_bdf(pci_dev_t bdf, struct udevice **devp);
856
857/**
858 * pci_bus_find_devfn() - Find a device on a bus
859 *
860 * @find_devfn: PCI device address (device and function only)
861 * @devp: Returns the device for this address, if found
862 * @return 0 if OK, -ENODEV if not found
863 */
864int pci_bus_find_devfn(struct udevice *bus, pci_dev_t find_devfn,
865 struct udevice **devp);
866
867/**
868 * pci_get_ff() - Returns a mask for the given access size
869 *
870 * @size: Access size
871 * @return 0xff for PCI_SIZE_8, 0xffff for PCI_SIZE_16, 0xffffffff for
872 * PCI_SIZE_32
873 */
874int pci_get_ff(enum pci_size_t size);
875
876/**
877 * pci_bus_find_devices () - Find devices on a bus
878 *
879 * @bus: Bus to search
880 * @ids: PCI vendor/device IDs to look for, terminated by 0, 0 record
881 * @indexp: Pointer to device index to find. To find the first matching
882 * device, pass 0; to find the second, pass 1, etc. This
883 * parameter is decremented for each non-matching device so
884 * can be called repeatedly.
885 * @devp: Returns matching device if found
886 * @return 0 if found, -ENODEV if not
887 */
888int pci_bus_find_devices(struct udevice *bus, struct pci_device_id *ids,
889 int *indexp, struct udevice **devp);
890
891/**
892 * pci_find_device_id() - Find a device on any bus
893 *
894 * @ids: PCI vendor/device IDs to look for, terminated by 0, 0 record
895 * @index: Index number of device to find, 0 for the first match, 1 for
896 * the second, etc.
897 * @devp: Returns matching device if found
898 * @return 0 if found, -ENODEV if not
899 */
900int pci_find_device_id(struct pci_device_id *ids, int index,
901 struct udevice **devp);
902
903/**
904 * dm_pci_hose_probe_bus() - probe a subordinate bus, scanning it for devices
905 *
906 * This probes the given bus which causes it to be scanned for devices. The
907 * devices will be bound but not probed.
908 *
909 * @hose specifies the PCI hose that will be used for the scan. This is
910 * always a top-level bus with uclass UCLASS_PCI. The bus to scan is
911 * in @bdf, and is a subordinate bus reachable from @hose.
912 *
913 * @hose: PCI hose to scan
914 * @bdf: PCI bus address to scan (PCI_BUS(bdf) is the bus number)
915 * @return 0 if OK, -ve on error
916 */
917int dm_pci_hose_probe_bus(struct pci_controller *hose, pci_dev_t bdf);
918
919/**
920 * pci_bus_read_config() - Read a configuration value from a device
921 *
922 * TODO(sjg@chromium.org): We should be able to pass just a device and have
923 * it do the right thing. It would be good to have that function also.
924 *
925 * @bus: Bus to read from
926 * @bdf: PCI device address: bus, device and function -see PCI_BDF()
927 * @valuep: Place to put the returned value
928 * @size: Access size
929 * @return 0 if OK, -ve on error
930 */
931int pci_bus_read_config(struct udevice *bus, pci_dev_t bdf, int offset,
932 unsigned long *valuep, enum pci_size_t size);
933
934/**
935 * pci_bus_write_config() - Write a configuration value to a device
936 *
937 * @bus: Bus to write from
938 * @bdf: PCI device address: bus, device and function -see PCI_BDF()
939 * @value: Value to write
940 * @size: Access size
941 * @return 0 if OK, -ve on error
942 */
943int pci_bus_write_config(struct udevice *bus, pci_dev_t bdf, int offset,
944 unsigned long value, enum pci_size_t size);
945
946/*
947 * The following functions provide access to the above without needing the
948 * size parameter. We are trying to encourage the use of the 8/16/32-style
949 * functions, rather than byte/word/dword. But both are supported.
950 */
951int pci_write_config32(pci_dev_t pcidev, int offset, u32 value);
952
953/* Compatibility with old naming */
954static inline int pci_write_config_dword(pci_dev_t pcidev, int offset,
955 u32 value)
956{
957 return pci_write_config32(pcidev, offset, value);
958}
959
960int pci_write_config16(pci_dev_t pcidev, int offset, u16 value);
961
962/* Compatibility with old naming */
963static inline int pci_write_config_word(pci_dev_t pcidev, int offset,
964 u16 value)
965{
966 return pci_write_config16(pcidev, offset, value);
967}
968
969int pci_write_config8(pci_dev_t pcidev, int offset, u8 value);
970
971/* Compatibility with old naming */
972static inline int pci_write_config_byte(pci_dev_t pcidev, int offset,
973 u8 value)
974{
975 return pci_write_config8(pcidev, offset, value);
976}
977
978int pci_read_config32(pci_dev_t pcidev, int offset, u32 *valuep);
979
980/* Compatibility with old naming */
981static inline int pci_read_config_dword(pci_dev_t pcidev, int offset,
982 u32 *valuep)
983{
984 return pci_read_config32(pcidev, offset, valuep);
985}
986
987int pci_read_config16(pci_dev_t pcidev, int offset, u16 *valuep);
988
989/* Compatibility with old naming */
990static inline int pci_read_config_word(pci_dev_t pcidev, int offset,
991 u16 *valuep)
992{
993 return pci_read_config16(pcidev, offset, valuep);
994}
995
996int pci_read_config8(pci_dev_t pcidev, int offset, u8 *valuep);
997
998/* Compatibility with old naming */
999static inline int pci_read_config_byte(pci_dev_t pcidev, int offset,
1000 u8 *valuep)
1001{
1002 return pci_read_config8(pcidev, offset, valuep);
1003}
1004
Simon Glass36d0d3b2015-03-05 12:25:28 -07001005/**
1006 * struct dm_pci_emul_ops - PCI device emulator operations
1007 */
1008struct dm_pci_emul_ops {
1009 /**
1010 * get_devfn(): Check which device and function this emulators
1011 *
1012 * @dev: device to check
1013 * @return the device and function this emulates, or -ve on error
1014 */
1015 int (*get_devfn)(struct udevice *dev);
1016 /**
1017 * read_config() - Read a PCI configuration value
1018 *
1019 * @dev: Emulated device to read from
1020 * @offset: Byte offset within the device's configuration space
1021 * @valuep: Place to put the returned value
1022 * @size: Access size
1023 * @return 0 if OK, -ve on error
1024 */
1025 int (*read_config)(struct udevice *dev, uint offset, ulong *valuep,
1026 enum pci_size_t size);
1027 /**
1028 * write_config() - Write a PCI configuration value
1029 *
1030 * @dev: Emulated device to write to
1031 * @offset: Byte offset within the device's configuration space
1032 * @value: Value to write
1033 * @size: Access size
1034 * @return 0 if OK, -ve on error
1035 */
1036 int (*write_config)(struct udevice *dev, uint offset, ulong value,
1037 enum pci_size_t size);
1038 /**
1039 * read_io() - Read a PCI I/O value
1040 *
1041 * @dev: Emulated device to read from
1042 * @addr: I/O address to read
1043 * @valuep: Place to put the returned value
1044 * @size: Access size
1045 * @return 0 if OK, -ENOENT if @addr is not mapped by this device,
1046 * other -ve value on error
1047 */
1048 int (*read_io)(struct udevice *dev, unsigned int addr, ulong *valuep,
1049 enum pci_size_t size);
1050 /**
1051 * write_io() - Write a PCI I/O value
1052 *
1053 * @dev: Emulated device to write from
1054 * @addr: I/O address to write
1055 * @value: Value to write
1056 * @size: Access size
1057 * @return 0 if OK, -ENOENT if @addr is not mapped by this device,
1058 * other -ve value on error
1059 */
1060 int (*write_io)(struct udevice *dev, unsigned int addr,
1061 ulong value, enum pci_size_t size);
1062 /**
1063 * map_physmem() - Map a device into sandbox memory
1064 *
1065 * @dev: Emulated device to map
1066 * @addr: Memory address, normally corresponding to a PCI BAR.
1067 * The device should have been configured to have a BAR
1068 * at this address.
1069 * @lenp: On entry, the size of the area to map, On exit it is
1070 * updated to the size actually mapped, which may be less
1071 * if the device has less space
1072 * @ptrp: Returns a pointer to the mapped address. The device's
1073 * space can be accessed as @lenp bytes starting here
1074 * @return 0 if OK, -ENOENT if @addr is not mapped by this device,
1075 * other -ve value on error
1076 */
1077 int (*map_physmem)(struct udevice *dev, phys_addr_t addr,
1078 unsigned long *lenp, void **ptrp);
1079 /**
1080 * unmap_physmem() - undo a memory mapping
1081 *
1082 * This must be called after map_physmem() to undo the mapping.
1083 * Some devices can use this to check what has been written into
1084 * their mapped memory and perform an operations they require on it.
1085 * In this way, map/unmap can be used as a sort of handshake between
1086 * the emulated device and its users.
1087 *
1088 * @dev: Emuated device to unmap
1089 * @vaddr: Mapped memory address, as passed to map_physmem()
1090 * @len: Size of area mapped, as returned by map_physmem()
1091 * @return 0 if OK, -ve on error
1092 */
1093 int (*unmap_physmem)(struct udevice *dev, const void *vaddr,
1094 unsigned long len);
1095};
1096
1097/* Get access to a PCI device emulator's operations */
1098#define pci_get_emul_ops(dev) ((struct dm_pci_emul_ops *)(dev)->driver->ops)
1099
1100/**
1101 * sandbox_pci_get_emul() - Get the emulation device for a PCI device
1102 *
1103 * Searches for a suitable emulator for the given PCI bus device
1104 *
1105 * @bus: PCI bus to search
1106 * @find_devfn: PCI device and function address (PCI_DEVFN())
1107 * @emulp: Returns emulated device if found
1108 * @return 0 if found, -ENODEV if not found
1109 */
1110int sandbox_pci_get_emul(struct udevice *bus, pci_dev_t find_devfn,
1111 struct udevice **emulp);
1112
Simon Glassff3e0772015-03-05 12:25:25 -07001113#endif
1114
Paul Burtonfa5cec02013-11-08 11:18:47 +00001115#endif /* __ASSEMBLY__ */
1116#endif /* _PCI_H */