blob: 673c95c6bb7908309c0a1475710b99b01338bf24 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenkc6097192002-11-03 00:24:07 +00002/*
3 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Andreas Heppel <aheppel@sysgo.de>
5 *
6 * (C) Copyright 2002
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Maciej W. Rozyckia398a512021-11-20 23:03:30 +00008 * Copyright (c) 2021 Maciej W. Rozycki <macro@orcam.me.uk>
wdenkc6097192002-11-03 00:24:07 +00009 */
10
11#ifndef _PCI_H
12#define _PCI_H
13
Minghuan Lianed5b5802015-07-10 11:35:08 +080014#define PCI_CFG_SPACE_SIZE 256
15#define PCI_CFG_SPACE_EXP_SIZE 4096
16
wdenkc6097192002-11-03 00:24:07 +000017/*
18 * Under PCI, each device has 256 bytes of configuration address space,
19 * of which the first 64 bytes are standardized as follows:
20 */
Bin Mengdac01fd2018-08-03 01:14:52 -070021#define PCI_STD_HEADER_SIZEOF 64
wdenkc6097192002-11-03 00:24:07 +000022#define PCI_VENDOR_ID 0x00 /* 16 bits */
23#define PCI_DEVICE_ID 0x02 /* 16 bits */
24#define PCI_COMMAND 0x04 /* 16 bits */
25#define PCI_COMMAND_IO 0x1 /* Enable response in I/O space */
26#define PCI_COMMAND_MEMORY 0x2 /* Enable response in Memory space */
27#define PCI_COMMAND_MASTER 0x4 /* Enable bus mastering */
28#define PCI_COMMAND_SPECIAL 0x8 /* Enable response to special cycles */
29#define PCI_COMMAND_INVALIDATE 0x10 /* Use memory write and invalidate */
30#define PCI_COMMAND_VGA_PALETTE 0x20 /* Enable palette snooping */
31#define PCI_COMMAND_PARITY 0x40 /* Enable parity checking */
32#define PCI_COMMAND_WAIT 0x80 /* Enable address/data stepping */
33#define PCI_COMMAND_SERR 0x100 /* Enable SERR */
34#define PCI_COMMAND_FAST_BACK 0x200 /* Enable back-to-back writes */
35
36#define PCI_STATUS 0x06 /* 16 bits */
37#define PCI_STATUS_CAP_LIST 0x10 /* Support Capability List */
38#define PCI_STATUS_66MHZ 0x20 /* Support 66 Mhz PCI 2.1 bus */
39#define PCI_STATUS_UDF 0x40 /* Support User Definable Features [obsolete] */
40#define PCI_STATUS_FAST_BACK 0x80 /* Accept fast-back to back */
41#define PCI_STATUS_PARITY 0x100 /* Detected parity error */
42#define PCI_STATUS_DEVSEL_MASK 0x600 /* DEVSEL timing */
43#define PCI_STATUS_DEVSEL_FAST 0x000
44#define PCI_STATUS_DEVSEL_MEDIUM 0x200
45#define PCI_STATUS_DEVSEL_SLOW 0x400
46#define PCI_STATUS_SIG_TARGET_ABORT 0x800 /* Set on target abort */
47#define PCI_STATUS_REC_TARGET_ABORT 0x1000 /* Master ack of " */
48#define PCI_STATUS_REC_MASTER_ABORT 0x2000 /* Set on master abort */
49#define PCI_STATUS_SIG_SYSTEM_ERROR 0x4000 /* Set when we drive SERR */
50#define PCI_STATUS_DETECTED_PARITY 0x8000 /* Set on parity error */
51
52#define PCI_CLASS_REVISION 0x08 /* High 24 bits are class, low 8
53 revision */
54#define PCI_REVISION_ID 0x08 /* Revision ID */
55#define PCI_CLASS_PROG 0x09 /* Reg. Level Programming Interface */
56#define PCI_CLASS_DEVICE 0x0a /* Device class */
57#define PCI_CLASS_CODE 0x0b /* Device class code */
Bill Richardson55ae10f2012-10-20 11:44:34 +000058#define PCI_CLASS_CODE_TOO_OLD 0x00
59#define PCI_CLASS_CODE_STORAGE 0x01
60#define PCI_CLASS_CODE_NETWORK 0x02
61#define PCI_CLASS_CODE_DISPLAY 0x03
62#define PCI_CLASS_CODE_MULTIMEDIA 0x04
63#define PCI_CLASS_CODE_MEMORY 0x05
64#define PCI_CLASS_CODE_BRIDGE 0x06
65#define PCI_CLASS_CODE_COMM 0x07
66#define PCI_CLASS_CODE_PERIPHERAL 0x08
67#define PCI_CLASS_CODE_INPUT 0x09
68#define PCI_CLASS_CODE_DOCKING 0x0A
69#define PCI_CLASS_CODE_PROCESSOR 0x0B
70#define PCI_CLASS_CODE_SERIAL 0x0C
71#define PCI_CLASS_CODE_WIRELESS 0x0D
72#define PCI_CLASS_CODE_I2O 0x0E
73#define PCI_CLASS_CODE_SATELLITE 0x0F
74#define PCI_CLASS_CODE_CRYPTO 0x10
75#define PCI_CLASS_CODE_DATA 0x11
76/* Base Class 0x12 - 0xFE is reserved */
77#define PCI_CLASS_CODE_OTHER 0xFF
78
wdenkc6097192002-11-03 00:24:07 +000079#define PCI_CLASS_SUB_CODE 0x0a /* Device sub-class code */
Bill Richardson55ae10f2012-10-20 11:44:34 +000080#define PCI_CLASS_SUB_CODE_TOO_OLD_NOTVGA 0x00
81#define PCI_CLASS_SUB_CODE_TOO_OLD_VGA 0x01
82#define PCI_CLASS_SUB_CODE_STORAGE_SCSI 0x00
83#define PCI_CLASS_SUB_CODE_STORAGE_IDE 0x01
84#define PCI_CLASS_SUB_CODE_STORAGE_FLOPPY 0x02
85#define PCI_CLASS_SUB_CODE_STORAGE_IPIBUS 0x03
86#define PCI_CLASS_SUB_CODE_STORAGE_RAID 0x04
87#define PCI_CLASS_SUB_CODE_STORAGE_ATA 0x05
88#define PCI_CLASS_SUB_CODE_STORAGE_SATA 0x06
89#define PCI_CLASS_SUB_CODE_STORAGE_SAS 0x07
90#define PCI_CLASS_SUB_CODE_STORAGE_OTHER 0x80
91#define PCI_CLASS_SUB_CODE_NETWORK_ETHERNET 0x00
92#define PCI_CLASS_SUB_CODE_NETWORK_TOKENRING 0x01
93#define PCI_CLASS_SUB_CODE_NETWORK_FDDI 0x02
94#define PCI_CLASS_SUB_CODE_NETWORK_ATM 0x03
95#define PCI_CLASS_SUB_CODE_NETWORK_ISDN 0x04
96#define PCI_CLASS_SUB_CODE_NETWORK_WORLDFIP 0x05
97#define PCI_CLASS_SUB_CODE_NETWORK_PICMG 0x06
98#define PCI_CLASS_SUB_CODE_NETWORK_OTHER 0x80
99#define PCI_CLASS_SUB_CODE_DISPLAY_VGA 0x00
100#define PCI_CLASS_SUB_CODE_DISPLAY_XGA 0x01
101#define PCI_CLASS_SUB_CODE_DISPLAY_3D 0x02
102#define PCI_CLASS_SUB_CODE_DISPLAY_OTHER 0x80
103#define PCI_CLASS_SUB_CODE_MULTIMEDIA_VIDEO 0x00
104#define PCI_CLASS_SUB_CODE_MULTIMEDIA_AUDIO 0x01
105#define PCI_CLASS_SUB_CODE_MULTIMEDIA_PHONE 0x02
106#define PCI_CLASS_SUB_CODE_MULTIMEDIA_OTHER 0x80
107#define PCI_CLASS_SUB_CODE_MEMORY_RAM 0x00
108#define PCI_CLASS_SUB_CODE_MEMORY_FLASH 0x01
109#define PCI_CLASS_SUB_CODE_MEMORY_OTHER 0x80
110#define PCI_CLASS_SUB_CODE_BRIDGE_HOST 0x00
111#define PCI_CLASS_SUB_CODE_BRIDGE_ISA 0x01
112#define PCI_CLASS_SUB_CODE_BRIDGE_EISA 0x02
113#define PCI_CLASS_SUB_CODE_BRIDGE_MCA 0x03
114#define PCI_CLASS_SUB_CODE_BRIDGE_PCI 0x04
115#define PCI_CLASS_SUB_CODE_BRIDGE_PCMCIA 0x05
116#define PCI_CLASS_SUB_CODE_BRIDGE_NUBUS 0x06
117#define PCI_CLASS_SUB_CODE_BRIDGE_CARDBUS 0x07
118#define PCI_CLASS_SUB_CODE_BRIDGE_RACEWAY 0x08
119#define PCI_CLASS_SUB_CODE_BRIDGE_SEMI_PCI 0x09
120#define PCI_CLASS_SUB_CODE_BRIDGE_INFINIBAND 0x0A
121#define PCI_CLASS_SUB_CODE_BRIDGE_OTHER 0x80
122#define PCI_CLASS_SUB_CODE_COMM_SERIAL 0x00
123#define PCI_CLASS_SUB_CODE_COMM_PARALLEL 0x01
124#define PCI_CLASS_SUB_CODE_COMM_MULTIPORT 0x02
125#define PCI_CLASS_SUB_CODE_COMM_MODEM 0x03
126#define PCI_CLASS_SUB_CODE_COMM_GPIB 0x04
127#define PCI_CLASS_SUB_CODE_COMM_SMARTCARD 0x05
128#define PCI_CLASS_SUB_CODE_COMM_OTHER 0x80
129#define PCI_CLASS_SUB_CODE_PERIPHERAL_PIC 0x00
130#define PCI_CLASS_SUB_CODE_PERIPHERAL_DMA 0x01
131#define PCI_CLASS_SUB_CODE_PERIPHERAL_TIMER 0x02
132#define PCI_CLASS_SUB_CODE_PERIPHERAL_RTC 0x03
133#define PCI_CLASS_SUB_CODE_PERIPHERAL_HOTPLUG 0x04
134#define PCI_CLASS_SUB_CODE_PERIPHERAL_SD 0x05
135#define PCI_CLASS_SUB_CODE_PERIPHERAL_OTHER 0x80
136#define PCI_CLASS_SUB_CODE_INPUT_KEYBOARD 0x00
137#define PCI_CLASS_SUB_CODE_INPUT_DIGITIZER 0x01
138#define PCI_CLASS_SUB_CODE_INPUT_MOUSE 0x02
139#define PCI_CLASS_SUB_CODE_INPUT_SCANNER 0x03
140#define PCI_CLASS_SUB_CODE_INPUT_GAMEPORT 0x04
141#define PCI_CLASS_SUB_CODE_INPUT_OTHER 0x80
142#define PCI_CLASS_SUB_CODE_DOCKING_GENERIC 0x00
143#define PCI_CLASS_SUB_CODE_DOCKING_OTHER 0x80
144#define PCI_CLASS_SUB_CODE_PROCESSOR_386 0x00
145#define PCI_CLASS_SUB_CODE_PROCESSOR_486 0x01
146#define PCI_CLASS_SUB_CODE_PROCESSOR_PENTIUM 0x02
147#define PCI_CLASS_SUB_CODE_PROCESSOR_ALPHA 0x10
148#define PCI_CLASS_SUB_CODE_PROCESSOR_POWERPC 0x20
149#define PCI_CLASS_SUB_CODE_PROCESSOR_MIPS 0x30
150#define PCI_CLASS_SUB_CODE_PROCESSOR_COPROC 0x40
151#define PCI_CLASS_SUB_CODE_SERIAL_1394 0x00
152#define PCI_CLASS_SUB_CODE_SERIAL_ACCESSBUS 0x01
153#define PCI_CLASS_SUB_CODE_SERIAL_SSA 0x02
154#define PCI_CLASS_SUB_CODE_SERIAL_USB 0x03
155#define PCI_CLASS_SUB_CODE_SERIAL_FIBRECHAN 0x04
156#define PCI_CLASS_SUB_CODE_SERIAL_SMBUS 0x05
157#define PCI_CLASS_SUB_CODE_SERIAL_INFINIBAND 0x06
158#define PCI_CLASS_SUB_CODE_SERIAL_IPMI 0x07
159#define PCI_CLASS_SUB_CODE_SERIAL_SERCOS 0x08
160#define PCI_CLASS_SUB_CODE_SERIAL_CANBUS 0x09
161#define PCI_CLASS_SUB_CODE_WIRELESS_IRDA 0x00
162#define PCI_CLASS_SUB_CODE_WIRELESS_IR 0x01
163#define PCI_CLASS_SUB_CODE_WIRELESS_RF 0x10
164#define PCI_CLASS_SUB_CODE_WIRELESS_BLUETOOTH 0x11
165#define PCI_CLASS_SUB_CODE_WIRELESS_BROADBAND 0x12
166#define PCI_CLASS_SUB_CODE_WIRELESS_80211A 0x20
167#define PCI_CLASS_SUB_CODE_WIRELESS_80211B 0x21
168#define PCI_CLASS_SUB_CODE_WIRELESS_OTHER 0x80
169#define PCI_CLASS_SUB_CODE_I2O_V1_0 0x00
170#define PCI_CLASS_SUB_CODE_SATELLITE_TV 0x01
171#define PCI_CLASS_SUB_CODE_SATELLITE_AUDIO 0x02
172#define PCI_CLASS_SUB_CODE_SATELLITE_VOICE 0x03
173#define PCI_CLASS_SUB_CODE_SATELLITE_DATA 0x04
174#define PCI_CLASS_SUB_CODE_CRYPTO_NETWORK 0x00
175#define PCI_CLASS_SUB_CODE_CRYPTO_ENTERTAINMENT 0x10
176#define PCI_CLASS_SUB_CODE_CRYPTO_OTHER 0x80
177#define PCI_CLASS_SUB_CODE_DATA_DPIO 0x00
178#define PCI_CLASS_SUB_CODE_DATA_PERFCNTR 0x01
179#define PCI_CLASS_SUB_CODE_DATA_COMMSYNC 0x10
180#define PCI_CLASS_SUB_CODE_DATA_MGMT 0x20
181#define PCI_CLASS_SUB_CODE_DATA_OTHER 0x80
wdenkc6097192002-11-03 00:24:07 +0000182
183#define PCI_CACHE_LINE_SIZE 0x0c /* 8 bits */
184#define PCI_LATENCY_TIMER 0x0d /* 8 bits */
185#define PCI_HEADER_TYPE 0x0e /* 8 bits */
186#define PCI_HEADER_TYPE_NORMAL 0
187#define PCI_HEADER_TYPE_BRIDGE 1
188#define PCI_HEADER_TYPE_CARDBUS 2
189
190#define PCI_BIST 0x0f /* 8 bits */
191#define PCI_BIST_CODE_MASK 0x0f /* Return result */
192#define PCI_BIST_START 0x40 /* 1 to start BIST, 2 secs or less */
193#define PCI_BIST_CAPABLE 0x80 /* 1 if BIST capable */
194
195/*
196 * Base addresses specify locations in memory or I/O space.
197 * Decoded size can be determined by writing a value of
198 * 0xffffffff to the register, and reading it back. Only
199 * 1 bits are decoded.
200 */
201#define PCI_BASE_ADDRESS_0 0x10 /* 32 bits */
202#define PCI_BASE_ADDRESS_1 0x14 /* 32 bits [htype 0,1 only] */
203#define PCI_BASE_ADDRESS_2 0x18 /* 32 bits [htype 0 only] */
204#define PCI_BASE_ADDRESS_3 0x1c /* 32 bits */
205#define PCI_BASE_ADDRESS_4 0x20 /* 32 bits */
206#define PCI_BASE_ADDRESS_5 0x24 /* 32 bits */
207#define PCI_BASE_ADDRESS_SPACE 0x01 /* 0 = memory, 1 = I/O */
208#define PCI_BASE_ADDRESS_SPACE_IO 0x01
209#define PCI_BASE_ADDRESS_SPACE_MEMORY 0x00
210#define PCI_BASE_ADDRESS_MEM_TYPE_MASK 0x06
211#define PCI_BASE_ADDRESS_MEM_TYPE_32 0x00 /* 32 bit address */
212#define PCI_BASE_ADDRESS_MEM_TYPE_1M 0x02 /* Below 1M [obsolete] */
213#define PCI_BASE_ADDRESS_MEM_TYPE_64 0x04 /* 64 bit address */
214#define PCI_BASE_ADDRESS_MEM_PREFETCH 0x08 /* prefetchable? */
Kumar Gala30e76d52008-10-21 08:36:08 -0500215#define PCI_BASE_ADDRESS_MEM_MASK (~0x0fULL)
216#define PCI_BASE_ADDRESS_IO_MASK (~0x03ULL)
wdenkc6097192002-11-03 00:24:07 +0000217/* bit 1 is reserved if address_space = 1 */
218
Simon Glass37a1cf92019-09-25 08:56:06 -0600219/* Convert a regsister address (e.g. PCI_BASE_ADDRESS_1) to a bar # (e.g. 1) */
220#define pci_offset_to_barnum(offset) \
221 (((offset) - PCI_BASE_ADDRESS_0) / sizeof(u32))
222
wdenkc6097192002-11-03 00:24:07 +0000223/* Header type 0 (normal devices) */
224#define PCI_CARDBUS_CIS 0x28
225#define PCI_SUBSYSTEM_VENDOR_ID 0x2c
226#define PCI_SUBSYSTEM_ID 0x2e
227#define PCI_ROM_ADDRESS 0x30 /* Bits 31..11 are address, 10..1 reserved */
228#define PCI_ROM_ADDRESS_ENABLE 0x01
Kumar Gala30e76d52008-10-21 08:36:08 -0500229#define PCI_ROM_ADDRESS_MASK (~0x7ffULL)
wdenkc6097192002-11-03 00:24:07 +0000230
231#define PCI_CAPABILITY_LIST 0x34 /* Offset of first capability list entry */
232
233/* 0x35-0x3b are reserved */
234#define PCI_INTERRUPT_LINE 0x3c /* 8 bits */
235#define PCI_INTERRUPT_PIN 0x3d /* 8 bits */
236#define PCI_MIN_GNT 0x3e /* 8 bits */
237#define PCI_MAX_LAT 0x3f /* 8 bits */
238
Simon Glass5f48d792015-07-27 15:47:17 -0600239#define PCI_INTERRUPT_LINE_DISABLE 0xff
240
wdenkc6097192002-11-03 00:24:07 +0000241/* Header type 1 (PCI-to-PCI bridges) */
242#define PCI_PRIMARY_BUS 0x18 /* Primary bus number */
243#define PCI_SECONDARY_BUS 0x19 /* Secondary bus number */
244#define PCI_SUBORDINATE_BUS 0x1a /* Highest bus number behind the bridge */
245#define PCI_SEC_LATENCY_TIMER 0x1b /* Latency timer for secondary interface */
246#define PCI_IO_BASE 0x1c /* I/O range behind the bridge */
247#define PCI_IO_LIMIT 0x1d
248#define PCI_IO_RANGE_TYPE_MASK 0x0f /* I/O bridging type */
249#define PCI_IO_RANGE_TYPE_16 0x00
250#define PCI_IO_RANGE_TYPE_32 0x01
251#define PCI_IO_RANGE_MASK ~0x0f
252#define PCI_SEC_STATUS 0x1e /* Secondary status register, only bit 14 used */
253#define PCI_MEMORY_BASE 0x20 /* Memory range behind */
254#define PCI_MEMORY_LIMIT 0x22
255#define PCI_MEMORY_RANGE_TYPE_MASK 0x0f
256#define PCI_MEMORY_RANGE_MASK ~0x0f
257#define PCI_PREF_MEMORY_BASE 0x24 /* Prefetchable memory range behind */
258#define PCI_PREF_MEMORY_LIMIT 0x26
259#define PCI_PREF_RANGE_TYPE_MASK 0x0f
260#define PCI_PREF_RANGE_TYPE_32 0x00
261#define PCI_PREF_RANGE_TYPE_64 0x01
262#define PCI_PREF_RANGE_MASK ~0x0f
263#define PCI_PREF_BASE_UPPER32 0x28 /* Upper half of prefetchable memory range */
264#define PCI_PREF_LIMIT_UPPER32 0x2c
265#define PCI_IO_BASE_UPPER16 0x30 /* Upper half of I/O addresses */
266#define PCI_IO_LIMIT_UPPER16 0x32
267/* 0x34 same as for htype 0 */
268/* 0x35-0x3b is reserved */
269#define PCI_ROM_ADDRESS1 0x38 /* Same as PCI_ROM_ADDRESS, but for htype 1 */
270/* 0x3c-0x3d are same as for htype 0 */
271#define PCI_BRIDGE_CONTROL 0x3e
272#define PCI_BRIDGE_CTL_PARITY 0x01 /* Enable parity detection on secondary interface */
273#define PCI_BRIDGE_CTL_SERR 0x02 /* The same for SERR forwarding */
274#define PCI_BRIDGE_CTL_NO_ISA 0x04 /* Disable bridging of ISA ports */
275#define PCI_BRIDGE_CTL_VGA 0x08 /* Forward VGA addresses */
276#define PCI_BRIDGE_CTL_MASTER_ABORT 0x20 /* Report master aborts */
277#define PCI_BRIDGE_CTL_BUS_RESET 0x40 /* Secondary bus reset */
278#define PCI_BRIDGE_CTL_FAST_BACK 0x80 /* Fast Back2Back enabled on secondary interface */
279
280/* Header type 2 (CardBus bridges) */
281#define PCI_CB_CAPABILITY_LIST 0x14
282/* 0x15 reserved */
283#define PCI_CB_SEC_STATUS 0x16 /* Secondary status */
284#define PCI_CB_PRIMARY_BUS 0x18 /* PCI bus number */
285#define PCI_CB_CARD_BUS 0x19 /* CardBus bus number */
286#define PCI_CB_SUBORDINATE_BUS 0x1a /* Subordinate bus number */
287#define PCI_CB_LATENCY_TIMER 0x1b /* CardBus latency timer */
288#define PCI_CB_MEMORY_BASE_0 0x1c
289#define PCI_CB_MEMORY_LIMIT_0 0x20
290#define PCI_CB_MEMORY_BASE_1 0x24
291#define PCI_CB_MEMORY_LIMIT_1 0x28
292#define PCI_CB_IO_BASE_0 0x2c
293#define PCI_CB_IO_BASE_0_HI 0x2e
294#define PCI_CB_IO_LIMIT_0 0x30
295#define PCI_CB_IO_LIMIT_0_HI 0x32
296#define PCI_CB_IO_BASE_1 0x34
297#define PCI_CB_IO_BASE_1_HI 0x36
298#define PCI_CB_IO_LIMIT_1 0x38
299#define PCI_CB_IO_LIMIT_1_HI 0x3a
300#define PCI_CB_IO_RANGE_MASK ~0x03
301/* 0x3c-0x3d are same as for htype 0 */
302#define PCI_CB_BRIDGE_CONTROL 0x3e
303#define PCI_CB_BRIDGE_CTL_PARITY 0x01 /* Similar to standard bridge control register */
304#define PCI_CB_BRIDGE_CTL_SERR 0x02
305#define PCI_CB_BRIDGE_CTL_ISA 0x04
306#define PCI_CB_BRIDGE_CTL_VGA 0x08
307#define PCI_CB_BRIDGE_CTL_MASTER_ABORT 0x20
308#define PCI_CB_BRIDGE_CTL_CB_RESET 0x40 /* CardBus reset */
309#define PCI_CB_BRIDGE_CTL_16BIT_INT 0x80 /* Enable interrupt for 16-bit cards */
310#define PCI_CB_BRIDGE_CTL_PREFETCH_MEM0 0x100 /* Prefetch enable for both memory regions */
311#define PCI_CB_BRIDGE_CTL_PREFETCH_MEM1 0x200
312#define PCI_CB_BRIDGE_CTL_POST_WRITES 0x400
313#define PCI_CB_SUBSYSTEM_VENDOR_ID 0x40
314#define PCI_CB_SUBSYSTEM_ID 0x42
315#define PCI_CB_LEGACY_MODE_BASE 0x44 /* 16-bit PC Card legacy mode base address (ExCa) */
316/* 0x48-0x7f reserved */
317
318/* Capability lists */
319
320#define PCI_CAP_LIST_ID 0 /* Capability ID */
321#define PCI_CAP_ID_PM 0x01 /* Power Management */
322#define PCI_CAP_ID_AGP 0x02 /* Accelerated Graphics Port */
323#define PCI_CAP_ID_VPD 0x03 /* Vital Product Data */
324#define PCI_CAP_ID_SLOTID 0x04 /* Slot Identification */
325#define PCI_CAP_ID_MSI 0x05 /* Message Signalled Interrupts */
326#define PCI_CAP_ID_CHSWP 0x06 /* CompactPCI HotSwap */
Bin Meng5d544f92018-08-03 01:14:51 -0700327#define PCI_CAP_ID_PCIX 0x07 /* PCI-X */
328#define PCI_CAP_ID_HT 0x08 /* HyperTransport */
329#define PCI_CAP_ID_VNDR 0x09 /* Vendor-Specific */
330#define PCI_CAP_ID_DBG 0x0A /* Debug port */
331#define PCI_CAP_ID_CCRC 0x0B /* CompactPCI Central Resource Control */
332#define PCI_CAP_ID_SHPC 0x0C /* PCI Standard Hot-Plug Controller */
333#define PCI_CAP_ID_SSVID 0x0D /* Bridge subsystem vendor/device ID */
334#define PCI_CAP_ID_AGP3 0x0E /* AGP Target PCI-PCI bridge */
335#define PCI_CAP_ID_SECDEV 0x0F /* Secure Device */
336#define PCI_CAP_ID_EXP 0x10 /* PCI Express */
337#define PCI_CAP_ID_MSIX 0x11 /* MSI-X */
338#define PCI_CAP_ID_SATA 0x12 /* SATA Data/Index Conf. */
339#define PCI_CAP_ID_AF 0x13 /* PCI Advanced Features */
340#define PCI_CAP_ID_EA 0x14 /* PCI Enhanced Allocation */
341#define PCI_CAP_ID_MAX PCI_CAP_ID_EA
wdenkc6097192002-11-03 00:24:07 +0000342#define PCI_CAP_LIST_NEXT 1 /* Next capability in the list */
343#define PCI_CAP_FLAGS 2 /* Capability defined flags (16 bits) */
344#define PCI_CAP_SIZEOF 4
345
346/* Power Management Registers */
347
348#define PCI_PM_CAP_VER_MASK 0x0007 /* Version */
349#define PCI_PM_CAP_PME_CLOCK 0x0008 /* PME clock required */
350#define PCI_PM_CAP_AUX_POWER 0x0010 /* Auxilliary power support */
351#define PCI_PM_CAP_DSI 0x0020 /* Device specific initialization */
352#define PCI_PM_CAP_D1 0x0200 /* D1 power state support */
353#define PCI_PM_CAP_D2 0x0400 /* D2 power state support */
354#define PCI_PM_CAP_PME 0x0800 /* PME pin supported */
355#define PCI_PM_CTRL 4 /* PM control and status register */
356#define PCI_PM_CTRL_STATE_MASK 0x0003 /* Current power state (D0 to D3) */
357#define PCI_PM_CTRL_PME_ENABLE 0x0100 /* PME pin enable */
358#define PCI_PM_CTRL_DATA_SEL_MASK 0x1e00 /* Data select (??) */
359#define PCI_PM_CTRL_DATA_SCALE_MASK 0x6000 /* Data scale (??) */
360#define PCI_PM_CTRL_PME_STATUS 0x8000 /* PME pin status */
361#define PCI_PM_PPB_EXTENSIONS 6 /* PPB support extensions (??) */
362#define PCI_PM_PPB_B2_B3 0x40 /* Stop clock when in D3hot (??) */
363#define PCI_PM_BPCC_ENABLE 0x80 /* Bus power/clock control enable (??) */
364#define PCI_PM_DATA_REGISTER 7 /* (??) */
365#define PCI_PM_SIZEOF 8
366
367/* AGP registers */
368
369#define PCI_AGP_VERSION 2 /* BCD version number */
370#define PCI_AGP_RFU 3 /* Rest of capability flags */
371#define PCI_AGP_STATUS 4 /* Status register */
372#define PCI_AGP_STATUS_RQ_MASK 0xff000000 /* Maximum number of requests - 1 */
373#define PCI_AGP_STATUS_SBA 0x0200 /* Sideband addressing supported */
374#define PCI_AGP_STATUS_64BIT 0x0020 /* 64-bit addressing supported */
375#define PCI_AGP_STATUS_FW 0x0010 /* FW transfers supported */
376#define PCI_AGP_STATUS_RATE4 0x0004 /* 4x transfer rate supported */
377#define PCI_AGP_STATUS_RATE2 0x0002 /* 2x transfer rate supported */
378#define PCI_AGP_STATUS_RATE1 0x0001 /* 1x transfer rate supported */
379#define PCI_AGP_COMMAND 8 /* Control register */
380#define PCI_AGP_COMMAND_RQ_MASK 0xff000000 /* Master: Maximum number of requests */
381#define PCI_AGP_COMMAND_SBA 0x0200 /* Sideband addressing enabled */
382#define PCI_AGP_COMMAND_AGP 0x0100 /* Allow processing of AGP transactions */
383#define PCI_AGP_COMMAND_64BIT 0x0020 /* Allow processing of 64-bit addresses */
384#define PCI_AGP_COMMAND_FW 0x0010 /* Force FW transfers */
385#define PCI_AGP_COMMAND_RATE4 0x0004 /* Use 4x rate */
386#define PCI_AGP_COMMAND_RATE2 0x0002 /* Use 4x rate */
387#define PCI_AGP_COMMAND_RATE1 0x0001 /* Use 4x rate */
388#define PCI_AGP_SIZEOF 12
389
Matthew McClintockf0e6f572006-06-28 10:44:49 -0500390/* PCI-X registers */
391
392#define PCI_X_CMD_DPERR_E 0x0001 /* Data Parity Error Recovery Enable */
393#define PCI_X_CMD_ERO 0x0002 /* Enable Relaxed Ordering */
394#define PCI_X_CMD_MAX_READ 0x0000 /* Max Memory Read Byte Count */
395#define PCI_X_CMD_MAX_SPLIT 0x0030 /* Max Outstanding Split Transactions */
396#define PCI_X_CMD_VERSION(x) (((x) >> 12) & 3) /* Version */
397
398
wdenkc6097192002-11-03 00:24:07 +0000399/* Slot Identification */
400
401#define PCI_SID_ESR 2 /* Expansion Slot Register */
402#define PCI_SID_ESR_NSLOTS 0x1f /* Number of expansion slots available */
403#define PCI_SID_ESR_FIC 0x20 /* First In Chassis Flag */
404#define PCI_SID_CHASSIS_NR 3 /* Chassis Number */
405
406/* Message Signalled Interrupts registers */
407
408#define PCI_MSI_FLAGS 2 /* Various flags */
409#define PCI_MSI_FLAGS_64BIT 0x80 /* 64-bit addresses allowed */
410#define PCI_MSI_FLAGS_QSIZE 0x70 /* Message queue size configured */
411#define PCI_MSI_FLAGS_QMASK 0x0e /* Maximum queue size available */
412#define PCI_MSI_FLAGS_ENABLE 0x01 /* MSI feature enabled */
Ramon Fried8781d042019-04-06 05:12:01 +0300413#define PCI_MSI_FLAGS_MASKBIT 0x0100 /* Per-vector masking capable */
wdenkc6097192002-11-03 00:24:07 +0000414#define PCI_MSI_RFU 3 /* Rest of capability flags */
415#define PCI_MSI_ADDRESS_LO 4 /* Lower 32 bits */
416#define PCI_MSI_ADDRESS_HI 8 /* Upper 32 bits (if PCI_MSI_FLAGS_64BIT set) */
417#define PCI_MSI_DATA_32 8 /* 16 bits of data for 32-bit devices */
418#define PCI_MSI_DATA_64 12 /* 16 bits of data for 64-bit devices */
419
420#define PCI_MAX_PCI_DEVICES 32
421#define PCI_MAX_PCI_FUNCTIONS 8
422
Zhao Qiang287df012013-10-12 13:46:33 +0800423#define PCI_FIND_CAP_TTL 0x48
424#define CAP_START_POS 0x40
425
Minghuan Lianed5b5802015-07-10 11:35:08 +0800426/* Extended Capabilities (PCI-X 2.0 and Express) */
427#define PCI_EXT_CAP_ID(header) (header & 0x0000ffff)
428#define PCI_EXT_CAP_VER(header) ((header >> 16) & 0xf)
429#define PCI_EXT_CAP_NEXT(header) ((header >> 20) & 0xffc)
430
431#define PCI_EXT_CAP_ID_ERR 0x01 /* Advanced Error Reporting */
432#define PCI_EXT_CAP_ID_VC 0x02 /* Virtual Channel Capability */
433#define PCI_EXT_CAP_ID_DSN 0x03 /* Device Serial Number */
434#define PCI_EXT_CAP_ID_PWR 0x04 /* Power Budgeting */
435#define PCI_EXT_CAP_ID_RCLD 0x05 /* Root Complex Link Declaration */
436#define PCI_EXT_CAP_ID_RCILC 0x06 /* Root Complex Internal Link Control */
437#define PCI_EXT_CAP_ID_RCEC 0x07 /* Root Complex Event Collector */
438#define PCI_EXT_CAP_ID_MFVC 0x08 /* Multi-Function VC Capability */
439#define PCI_EXT_CAP_ID_VC9 0x09 /* same as _VC */
440#define PCI_EXT_CAP_ID_RCRB 0x0A /* Root Complex RB? */
441#define PCI_EXT_CAP_ID_VNDR 0x0B /* Vendor-Specific */
442#define PCI_EXT_CAP_ID_CAC 0x0C /* Config Access - obsolete */
443#define PCI_EXT_CAP_ID_ACS 0x0D /* Access Control Services */
444#define PCI_EXT_CAP_ID_ARI 0x0E /* Alternate Routing ID */
445#define PCI_EXT_CAP_ID_ATS 0x0F /* Address Translation Services */
446#define PCI_EXT_CAP_ID_SRIOV 0x10 /* Single Root I/O Virtualization */
447#define PCI_EXT_CAP_ID_MRIOV 0x11 /* Multi Root I/O Virtualization */
448#define PCI_EXT_CAP_ID_MCAST 0x12 /* Multicast */
449#define PCI_EXT_CAP_ID_PRI 0x13 /* Page Request Interface */
450#define PCI_EXT_CAP_ID_AMD_XXX 0x14 /* Reserved for AMD */
451#define PCI_EXT_CAP_ID_REBAR 0x15 /* Resizable BAR */
452#define PCI_EXT_CAP_ID_DPA 0x16 /* Dynamic Power Allocation */
453#define PCI_EXT_CAP_ID_TPH 0x17 /* TPH Requester */
454#define PCI_EXT_CAP_ID_LTR 0x18 /* Latency Tolerance Reporting */
455#define PCI_EXT_CAP_ID_SECPCI 0x19 /* Secondary PCIe Capability */
456#define PCI_EXT_CAP_ID_PMUX 0x1A /* Protocol Multiplexing */
457#define PCI_EXT_CAP_ID_PASID 0x1B /* Process Address Space ID */
Bin Meng5d544f92018-08-03 01:14:51 -0700458#define PCI_EXT_CAP_ID_DPC 0x1D /* Downstream Port Containment */
459#define PCI_EXT_CAP_ID_L1SS 0x1E /* L1 PM Substates */
460#define PCI_EXT_CAP_ID_PTM 0x1F /* Precision Time Measurement */
461#define PCI_EXT_CAP_ID_MAX PCI_EXT_CAP_ID_PTM
Minghuan Lianed5b5802015-07-10 11:35:08 +0800462
Alex Marginean0b143d82019-06-07 11:24:23 +0300463/* Enhanced Allocation Registers */
464#define PCI_EA_NUM_ENT 2 /* Number of Capability Entries */
465#define PCI_EA_NUM_ENT_MASK 0x3f /* Num Entries Mask */
466#define PCI_EA_FIRST_ENT 4 /* First EA Entry in List */
467#define PCI_EA_ES 0x00000007 /* Entry Size */
468#define PCI_EA_BEI 0x000000f0 /* BAR Equivalent Indicator */
Suneel Garapati51eeae92019-10-19 16:34:16 -0700469/* 9-14 map to VF BARs 0-5 respectively */
470#define PCI_EA_BEI_VF_BAR0 9
471#define PCI_EA_BEI_VF_BAR5 14
Alex Marginean0b143d82019-06-07 11:24:23 +0300472/* Base, MaxOffset registers */
473/* bit 0 is reserved */
474#define PCI_EA_IS_64 0x00000002 /* 64-bit field flag */
475#define PCI_EA_FIELD_MASK 0xfffffffc /* For Base & Max Offset */
476
Alex Margineanb8e1f822019-06-07 11:24:25 +0300477/* PCI Express capabilities */
Sylwester Nawrockib6687e12020-05-25 13:39:53 +0200478#define PCI_EXP_FLAGS 2 /* Capabilities register */
Maciej W. Rozyckia398a512021-11-20 23:03:30 +0000479#define PCI_EXP_FLAGS_VERS 0x000f /* Capability Version */
Sylwester Nawrockib6687e12020-05-25 13:39:53 +0200480#define PCI_EXP_FLAGS_TYPE 0x00f0 /* Device/Port type */
Maciej W. Rozyckia398a512021-11-20 23:03:30 +0000481#define PCI_EXP_TYPE_ROOT_PORT 0x4 /* Root Port */
482#define PCI_EXP_TYPE_DOWNSTREAM 0x6 /* Downstream Port */
483#define PCI_EXP_TYPE_PCIE_BRIDGE 0x8 /* PCI/PCI-X to PCIe Bridge */
Alex Margineanb8e1f822019-06-07 11:24:25 +0300484#define PCI_EXP_DEVCAP 4 /* Device capabilities */
Sylwester Nawrockib6687e12020-05-25 13:39:53 +0200485#define PCI_EXP_DEVCAP_FLR 0x10000000 /* Function Level Reset */
Alex Margineanb8e1f822019-06-07 11:24:25 +0300486#define PCI_EXP_DEVCTL 8 /* Device Control */
Pali Rohár819a43c2022-02-10 14:53:42 +0100487#define PCI_EXP_DEVCTL_PAYLOAD 0x00e0 /* Max_Payload_Size */
488#define PCI_EXP_DEVCTL_PAYLOAD_128B 0x0000 /* 128 Bytes */
489#define PCI_EXP_DEVCTL_PAYLOAD_256B 0x0020 /* 256 Bytes */
490#define PCI_EXP_DEVCTL_PAYLOAD_512B 0x0040 /* 512 Bytes */
491#define PCI_EXP_DEVCTL_PAYLOAD_1024B 0x0060 /* 1024 Bytes */
492#define PCI_EXP_DEVCTL_PAYLOAD_2048B 0x0080 /* 2048 Bytes */
493#define PCI_EXP_DEVCTL_PAYLOAD_4096B 0x00a0 /* 4096 Bytes */
494#define PCI_EXP_DEVCTL_RELAX_EN 0x0010 /* Enable relaxed ordering */
495#define PCI_EXP_DEVCTL_NOSNOOP_EN 0x0800 /* Enable No Snoop */
496#define PCI_EXP_DEVCTL_READRQ 0x7000 /* Max_Read_Request_Size */
497#define PCI_EXP_DEVCTL_READRQ_128B 0x0000 /* 128 Bytes */
498#define PCI_EXP_DEVCTL_READRQ_256B 0x1000 /* 256 Bytes */
499#define PCI_EXP_DEVCTL_READRQ_512B 0x2000 /* 512 Bytes */
500#define PCI_EXP_DEVCTL_READRQ_1024B 0x3000 /* 1024 Bytes */
501#define PCI_EXP_DEVCTL_READRQ_2048B 0x4000 /* 2048 Bytes */
502#define PCI_EXP_DEVCTL_READRQ_4096B 0x5000 /* 4096 Bytes */
Sylwester Nawrockib6687e12020-05-25 13:39:53 +0200503#define PCI_EXP_DEVCTL_BCR_FLR 0x8000 /* Bridge Configuration Retry / FLR */
504#define PCI_EXP_LNKCAP 12 /* Link Capabilities */
Sylwester Nawrockidb754852020-05-25 13:39:57 +0200505#define PCI_EXP_LNKCAP_SLS 0x0000000f /* Supported Link Speeds */
Maciej W. Rozyckia398a512021-11-20 23:03:30 +0000506#define PCI_EXP_LNKCAP_SLS_2_5GB 0x00000001 /* LNKCAP2 SLS Vector bit 0 */
507#define PCI_EXP_LNKCAP_SLS_5_0GB 0x00000002 /* LNKCAP2 SLS Vector bit 1 */
508#define PCI_EXP_LNKCAP_SLS_8_0GB 0x00000003 /* LNKCAP2 SLS Vector bit 2 */
Sylwester Nawrockidb754852020-05-25 13:39:57 +0200509#define PCI_EXP_LNKCAP_MLW 0x000003f0 /* Maximum Link Width */
Sylwester Nawrockib6687e12020-05-25 13:39:53 +0200510#define PCI_EXP_LNKCAP_DLLLARC 0x00100000 /* Data Link Layer Link Active Reporting Capable */
Maciej W. Rozyckia398a512021-11-20 23:03:30 +0000511#define PCI_EXP_LNKCTL 16 /* Link Control */
512#define PCI_EXP_LNKCTL_RL 0x0020 /* Retrain Link */
Sylwester Nawrockib6687e12020-05-25 13:39:53 +0200513#define PCI_EXP_LNKSTA 18 /* Link Status */
Sylwester Nawrockidb754852020-05-25 13:39:57 +0200514#define PCI_EXP_LNKSTA_CLS 0x000f /* Current Link Speed */
515#define PCI_EXP_LNKSTA_CLS_2_5GB 0x0001 /* Current Link Speed 2.5GT/s */
516#define PCI_EXP_LNKSTA_CLS_5_0GB 0x0002 /* Current Link Speed 5.0GT/s */
517#define PCI_EXP_LNKSTA_CLS_8_0GB 0x0003 /* Current Link Speed 8.0GT/s */
518#define PCI_EXP_LNKSTA_NLW 0x03f0 /* Negotiated Link Width */
519#define PCI_EXP_LNKSTA_NLW_SHIFT 4 /* start of NLW mask in link status */
Maciej W. Rozyckia398a512021-11-20 23:03:30 +0000520#define PCI_EXP_LNKSTA_LT 0x0800 /* Link Training */
Sylwester Nawrockib6687e12020-05-25 13:39:53 +0200521#define PCI_EXP_LNKSTA_DLLLA 0x2000 /* Data Link Layer Link Active */
Maciej W. Rozyckia398a512021-11-20 23:03:30 +0000522#define PCI_EXP_LNKSTA_LBMS 0x4000 /* Link Bandwidth Management Status */
Sylwester Nawrockib6687e12020-05-25 13:39:53 +0200523#define PCI_EXP_SLTCAP 20 /* Slot Capabilities */
524#define PCI_EXP_SLTCAP_PSN 0xfff80000 /* Physical Slot Number */
Pali Rohár1d7ad682021-09-26 00:54:44 +0200525#define PCI_EXP_RTCTL 28 /* Root Control */
526#define PCI_EXP_RTCTL_CRSSVE 0x0010 /* CRS Software Visibility Enable */
527#define PCI_EXP_RTCAP 30 /* Root Capabilities */
528#define PCI_EXP_RTCAP_CRSVIS 0x0001 /* CRS Software Visibility capability */
Laurentiu Tudor284d0622020-09-10 12:42:18 +0300529#define PCI_EXP_DEVCAP2 36 /* Device Capabilities 2 */
530#define PCI_EXP_DEVCAP2_ARI 0x00000020 /* ARI Forwarding Supported */
531#define PCI_EXP_DEVCTL2 40 /* Device Control 2 */
532#define PCI_EXP_DEVCTL2_ARI 0x0020 /* Alternative Routing-ID */
Maciej W. Rozyckia398a512021-11-20 23:03:30 +0000533#define PCI_EXP_LNKCAP2 44 /* Link Capability 2 */
534#define PCI_EXP_LNKCAP2_SLS 0x000000fe /* Supported Link Speeds Vector */
Sylwester Nawrockidb754852020-05-25 13:39:57 +0200535#define PCI_EXP_LNKCTL2 48 /* Link Control 2 */
Maciej W. Rozyckia398a512021-11-20 23:03:30 +0000536#define PCI_EXP_LNKCTL2_TLS 0x000f /* Target Link Speed */
537#define PCI_EXP_LNKCTL2_TLS_2_5GT 0x0001 /* Target Link Speed 2.5GT/s */
538#define PCI_EXP_LNKCTL2_TLS_5_0GT 0x0002 /* Target Link Speed 5.0GT/s */
539#define PCI_EXP_LNKCTL2_TLS_8_0GT 0x0003 /* Target Link Speed 8.0GT/s */
540
Pali Rohár819a43c2022-02-10 14:53:42 +0100541/* Advanced Error Reporting */
542#define PCI_ERR_CAP 24 /* Advanced Error Capabilities */
543#define PCI_ERR_CAP_FEP(x) ((x) & 31) /* First Error Pointer */
544#define PCI_ERR_CAP_ECRC_GENC 0x00000020 /* ECRC Generation Capable */
545#define PCI_ERR_CAP_ECRC_GENE 0x00000040 /* ECRC Generation Enable */
546#define PCI_ERR_CAP_ECRC_CHKC 0x00000080 /* ECRC Check Capable */
547#define PCI_ERR_CAP_ECRC_CHKE 0x00000100 /* ECRC Check Enable */
548
Suneel Garapatib8852dc2019-10-19 16:07:20 -0700549/* Single Root I/O Virtualization Registers */
550#define PCI_SRIOV_CAP 0x04 /* SR-IOV Capabilities */
551#define PCI_SRIOV_CTRL 0x08 /* SR-IOV Control */
552#define PCI_SRIOV_CTRL_VFE 0x01 /* VF Enable */
553#define PCI_SRIOV_CTRL_MSE 0x08 /* VF Memory Space Enable */
Laurentiu Tudor284d0622020-09-10 12:42:18 +0300554#define PCI_SRIOV_CTRL_ARI 0x10 /* ARI Capable Hierarchy */
Suneel Garapatib8852dc2019-10-19 16:07:20 -0700555#define PCI_SRIOV_INITIAL_VF 0x0c /* Initial VFs */
556#define PCI_SRIOV_TOTAL_VF 0x0e /* Total VFs */
557#define PCI_SRIOV_NUM_VF 0x10 /* Number of VFs */
558#define PCI_SRIOV_VF_OFFSET 0x14 /* First VF Offset */
559#define PCI_SRIOV_VF_STRIDE 0x16 /* Following VF Stride */
560#define PCI_SRIOV_VF_DID 0x1a /* VF Device ID */
Alex Margineanb8e1f822019-06-07 11:24:25 +0300561
wdenkc6097192002-11-03 00:24:07 +0000562/* Include the ID list */
563
564#include <pci_ids.h>
565
Pali Rohára4bc38d2021-11-03 01:01:05 +0100566/*
Pali Rohár2a8d4022021-11-26 11:42:41 +0100567 * Config Address for PCI Configuration Mechanism #1
568 *
569 * See PCI Local Bus Specification, Revision 3.0,
570 * Section 3.2.2.3.2, Figure 3-2, p. 50.
571 */
572
573#define PCI_CONF1_BUS_SHIFT 16 /* Bus number */
574#define PCI_CONF1_DEV_SHIFT 11 /* Device number */
575#define PCI_CONF1_FUNC_SHIFT 8 /* Function number */
576
577#define PCI_CONF1_BUS_MASK 0xff
578#define PCI_CONF1_DEV_MASK 0x1f
579#define PCI_CONF1_FUNC_MASK 0x7
580#define PCI_CONF1_REG_MASK 0xfc /* Limit aligned offset to a maximum of 256B */
581
582#define PCI_CONF1_ENABLE BIT(31)
583#define PCI_CONF1_BUS(x) (((x) & PCI_CONF1_BUS_MASK) << PCI_CONF1_BUS_SHIFT)
584#define PCI_CONF1_DEV(x) (((x) & PCI_CONF1_DEV_MASK) << PCI_CONF1_DEV_SHIFT)
585#define PCI_CONF1_FUNC(x) (((x) & PCI_CONF1_FUNC_MASK) << PCI_CONF1_FUNC_SHIFT)
586#define PCI_CONF1_REG(x) ((x) & PCI_CONF1_REG_MASK)
587
588#define PCI_CONF1_ADDRESS(bus, dev, func, reg) \
589 (PCI_CONF1_ENABLE | \
590 PCI_CONF1_BUS(bus) | \
591 PCI_CONF1_DEV(dev) | \
592 PCI_CONF1_FUNC(func) | \
593 PCI_CONF1_REG(reg))
594
595/*
596 * Extension of PCI Config Address for accessing extended PCIe registers
597 *
598 * No standardized specification, but used on lot of non-ECAM-compliant ARM SoCs
599 * or on AMD Barcelona and new CPUs. Reserved bits [27:24] of PCI Config Address
600 * are used for specifying additional 4 high bits of PCI Express register.
601 */
602
603#define PCI_CONF1_EXT_REG_SHIFT 16
604#define PCI_CONF1_EXT_REG_MASK 0xf00
605#define PCI_CONF1_EXT_REG(x) (((x) & PCI_CONF1_EXT_REG_MASK) << PCI_CONF1_EXT_REG_SHIFT)
606
607#define PCI_CONF1_EXT_ADDRESS(bus, dev, func, reg) \
608 (PCI_CONF1_ADDRESS(bus, dev, func, reg) | \
609 PCI_CONF1_EXT_REG(reg))
610
611/*
Pali Rohára4bc38d2021-11-03 01:01:05 +0100612 * Enhanced Configuration Access Mechanism (ECAM)
613 *
614 * See PCI Express Base Specification, Revision 5.0, Version 1.0,
615 * Section 7.2.2, Table 7-1, p. 677.
616 */
617#define PCIE_ECAM_BUS_SHIFT 20 /* Bus number */
618#define PCIE_ECAM_DEV_SHIFT 15 /* Device number */
619#define PCIE_ECAM_FUNC_SHIFT 12 /* Function number */
620
621#define PCIE_ECAM_BUS_MASK 0xff
622#define PCIE_ECAM_DEV_MASK 0x1f
623#define PCIE_ECAM_FUNC_MASK 0x7
624#define PCIE_ECAM_REG_MASK 0xfff /* Limit offset to a maximum of 4K */
625
626#define PCIE_ECAM_BUS(x) (((x) & PCIE_ECAM_BUS_MASK) << PCIE_ECAM_BUS_SHIFT)
627#define PCIE_ECAM_DEV(x) (((x) & PCIE_ECAM_DEV_MASK) << PCIE_ECAM_DEV_SHIFT)
628#define PCIE_ECAM_FUNC(x) (((x) & PCIE_ECAM_FUNC_MASK) << PCIE_ECAM_FUNC_SHIFT)
629#define PCIE_ECAM_REG(x) ((x) & PCIE_ECAM_REG_MASK)
630
631#define PCIE_ECAM_OFFSET(bus, dev, func, where) \
632 (PCIE_ECAM_BUS(bus) | \
633 PCIE_ECAM_DEV(dev) | \
634 PCIE_ECAM_FUNC(func) | \
635 PCIE_ECAM_REG(where))
636
Paul Burtonfa5cec02013-11-08 11:18:47 +0000637#ifndef __ASSEMBLY__
638
Simon Glass6dd4b012019-12-06 21:41:38 -0700639#include <dm/pci.h>
640
Kumar Gala30e76d52008-10-21 08:36:08 -0500641#ifdef CONFIG_SYS_PCI_64BIT
642typedef u64 pci_addr_t;
643typedef u64 pci_size_t;
644#else
Heinrich Schuchardt58fc2b52020-02-05 21:59:12 +0100645typedef unsigned long pci_addr_t;
646typedef unsigned long pci_size_t;
Kumar Gala30e76d52008-10-21 08:36:08 -0500647#endif
wdenkc6097192002-11-03 00:24:07 +0000648
Kumar Gala30e76d52008-10-21 08:36:08 -0500649struct pci_region {
650 pci_addr_t bus_start; /* Start on the bus */
651 phys_addr_t phys_start; /* Start in physical address space */
652 pci_size_t size; /* Size */
653 unsigned long flags; /* Resource flags */
654
655 pci_addr_t bus_lower;
wdenkc6097192002-11-03 00:24:07 +0000656};
657
658#define PCI_REGION_MEM 0x00000000 /* PCI memory space */
659#define PCI_REGION_IO 0x00000001 /* PCI IO space */
660#define PCI_REGION_TYPE 0x00000001
Kumar Galaa1790122006-01-11 13:24:15 -0600661#define PCI_REGION_PREFETCH 0x00000008 /* prefetchable PCI memory */
wdenkc6097192002-11-03 00:24:07 +0000662
Kumar Galaff4e66e2009-02-06 09:49:31 -0600663#define PCI_REGION_SYS_MEMORY 0x00000100 /* System memory */
wdenkc6097192002-11-03 00:24:07 +0000664#define PCI_REGION_RO 0x00000200 /* Read-only memory */
665
Simon Glassbc3442a2013-06-11 11:14:33 -0700666static inline void pci_set_region(struct pci_region *reg,
Kumar Gala30e76d52008-10-21 08:36:08 -0500667 pci_addr_t bus_start,
Becky Bruce36f32672008-05-07 13:24:57 -0500668 phys_addr_t phys_start,
Kumar Gala30e76d52008-10-21 08:36:08 -0500669 pci_size_t size,
wdenkc6097192002-11-03 00:24:07 +0000670 unsigned long flags) {
671 reg->bus_start = bus_start;
672 reg->phys_start = phys_start;
673 reg->size = size;
674 reg->flags = flags;
675}
676
677typedef int pci_dev_t;
678
Simon Glassff3e0772015-03-05 12:25:25 -0700679#define PCI_BUS(d) (((d) >> 16) & 0xff)
Stefan Roese2253d642019-02-11 08:43:25 +0100680
681/*
682 * Please note the difference in DEVFN usage in U-Boot vs Linux. U-Boot
683 * uses DEVFN in bits 15-8 but Linux instead expects DEVFN in bits 7-0.
684 * Please see the Linux header include/uapi/linux/pci.h for more details.
685 * This is relevant for the following macros:
686 * PCI_DEV, PCI_FUNC, PCI_DEVFN
687 * The U-Boot macro PCI_DEV is equivalent to the Linux PCI_SLOT version with
Simon Glass5f20c282020-05-10 10:26:54 -0600688 * the remark from above (input is in bits 15-8 instead of 7-0.
Stefan Roese2253d642019-02-11 08:43:25 +0100689 */
Simon Glassff3e0772015-03-05 12:25:25 -0700690#define PCI_DEV(d) (((d) >> 11) & 0x1f)
691#define PCI_FUNC(d) (((d) >> 8) & 0x7)
692#define PCI_DEVFN(d, f) ((d) << 11 | (f) << 8)
Stefan Roese2253d642019-02-11 08:43:25 +0100693
Simon Glassff3e0772015-03-05 12:25:25 -0700694#define PCI_MASK_BUS(bdf) ((bdf) & 0xffff)
695#define PCI_ADD_BUS(bus, devfn) (((bus) << 16) | (devfn))
696#define PCI_BDF(b, d, f) ((b) << 16 | PCI_DEVFN(d, f))
Simon Glassff3e0772015-03-05 12:25:25 -0700697#define PCI_ANY_ID (~0)
wdenkc6097192002-11-03 00:24:07 +0000698
Simon Glassf0597032020-04-08 08:32:59 -0600699/* Convert from Linux format to U-Boot format */
700#define PCI_TO_BDF(val) ((val) << 8)
701
wdenkc6097192002-11-03 00:24:07 +0000702struct pci_device_id {
Simon Glassaba92962015-07-06 16:47:44 -0600703 unsigned int vendor, device; /* Vendor and device ID or PCI_ANY_ID */
704 unsigned int subvendor, subdevice; /* Subsystem ID's or PCI_ANY_ID */
705 unsigned int class, class_mask; /* (class,subclass,prog-if) triplet */
706 unsigned long driver_data; /* Data private to the driver */
wdenkc6097192002-11-03 00:24:07 +0000707};
708
709struct pci_controller;
710
711struct pci_config_table {
712 unsigned int vendor, device; /* Vendor and device ID or PCI_ANY_ID */
713 unsigned int class; /* Class ID, or PCI_ANY_ID */
714 unsigned int bus; /* Bus number, or PCI_ANY_ID */
715 unsigned int dev; /* Device number, or PCI_ANY_ID */
716 unsigned int func; /* Function number, or PCI_ANY_ID */
717
718 void (*config_device)(struct pci_controller* hose, pci_dev_t dev,
719 struct pci_config_table *);
720 unsigned long priv[3];
721};
722
Wolfgang Denk993a2272006-03-12 16:54:11 +0100723extern void pci_cfgfunc_do_nothing(struct pci_controller* hose, pci_dev_t dev,
724 struct pci_config_table *);
wdenkc6097192002-11-03 00:24:07 +0000725extern void pci_cfgfunc_config_device(struct pci_controller* hose, pci_dev_t dev,
726 struct pci_config_table *);
727
Anton Vorontsovfd6646c2009-01-08 04:26:12 +0300728#define INDIRECT_TYPE_NO_PCIE_LINK 1
729
Simon Glass2206ac22019-12-06 21:41:37 -0700730/**
wdenkc6097192002-11-03 00:24:07 +0000731 * Structure of a PCI controller (host bridge)
Simon Glass54fe7b12015-11-26 19:51:21 -0700732 *
733 * With driver model this is dev_get_uclass_priv(bus)
Simon Glass2206ac22019-12-06 21:41:37 -0700734 *
735 * @skip_auto_config_until_reloc: true to avoid auto-config until U-Boot has
736 * relocated. Normally if PCI is used before relocation, this happens
737 * before relocation also. Some platforms set up static configuration in
738 * TPL/SPL to reduce code size and boot time, since these phases only know
739 * about a small subset of PCI devices. This is normally false.
wdenkc6097192002-11-03 00:24:07 +0000740 */
741struct pci_controller {
Simon Glassff3e0772015-03-05 12:25:25 -0700742 struct udevice *bus;
743 struct udevice *ctlr;
Simon Glass2206ac22019-12-06 21:41:37 -0700744 bool skip_auto_config_until_reloc;
wdenkc6097192002-11-03 00:24:07 +0000745
746 int first_busno;
747 int last_busno;
748
749 volatile unsigned int *cfg_addr;
750 volatile unsigned char *cfg_data;
751
Anton Vorontsovfd6646c2009-01-08 04:26:12 +0300752 int indirect_type;
753
Simon Glassaec241d2015-06-07 08:50:40 -0600754 /*
755 * TODO(sjg@chromium.org): With driver model we use struct
756 * pci_controller for both the controller and any bridge devices
757 * attached to it. But there is only one region list and it is in the
758 * top-level controller.
759 *
760 * This could be changed so that struct pci_controller is only used
761 * for PCI controllers and a separate UCLASS (or perhaps
762 * UCLASS_PCI_GENERIC) is used for bridges.
763 */
Stefan Roesee0024742020-07-23 16:34:10 +0200764 struct pci_region *regions;
wdenkc6097192002-11-03 00:24:07 +0000765 int region_count;
766
767 struct pci_config_table *config_table;
768
769 void (*fixup_irq)(struct pci_controller *, pci_dev_t);
wdenkc6097192002-11-03 00:24:07 +0000770
771 /* Used by auto config */
Kumar Galaa1790122006-01-11 13:24:15 -0600772 struct pci_region *pci_mem, *pci_io, *pci_prefetch;
wdenkc6097192002-11-03 00:24:07 +0000773};
774
Simon Glass26543cc2021-08-01 18:54:16 -0600775#if defined(CONFIG_DM_PCI_COMPAT)
Becky Bruce36f32672008-05-07 13:24:57 -0500776extern phys_addr_t pci_hose_bus_to_phys(struct pci_controller* hose,
Kumar Gala30e76d52008-10-21 08:36:08 -0500777 pci_addr_t addr, unsigned long flags);
778extern pci_addr_t pci_hose_phys_to_bus(struct pci_controller* hose,
779 phys_addr_t addr, unsigned long flags);
wdenkc6097192002-11-03 00:24:07 +0000780
781#define pci_phys_to_bus(dev, addr, flags) \
782 pci_hose_phys_to_bus(pci_bus_to_hose(PCI_BUS(dev)), (addr), (flags))
783#define pci_bus_to_phys(dev, addr, flags) \
784 pci_hose_bus_to_phys(pci_bus_to_hose(PCI_BUS(dev)), (addr), (flags))
785
Becky Bruce6e61fae2009-02-03 18:10:50 -0600786#define pci_virt_to_bus(dev, addr, flags) \
787 pci_hose_phys_to_bus(pci_bus_to_hose(PCI_BUS(dev)), \
788 (virt_to_phys(addr)), (flags))
789#define pci_bus_to_virt(dev, addr, flags, len, map_flags) \
790 map_physmem(pci_hose_bus_to_phys(pci_bus_to_hose(PCI_BUS(dev)), \
791 (addr), (flags)), \
792 (len), (map_flags))
793
794#define pci_phys_to_mem(dev, addr) \
795 pci_phys_to_bus((dev), (addr), PCI_REGION_MEM)
796#define pci_mem_to_phys(dev, addr) \
797 pci_bus_to_phys((dev), (addr), PCI_REGION_MEM)
798#define pci_phys_to_io(dev, addr) pci_phys_to_bus((dev), (addr), PCI_REGION_IO)
799#define pci_io_to_phys(dev, addr) pci_bus_to_phys((dev), (addr), PCI_REGION_IO)
800
801#define pci_virt_to_mem(dev, addr) \
802 pci_virt_to_bus((dev), (addr), PCI_REGION_MEM)
803#define pci_mem_to_virt(dev, addr, len, map_flags) \
804 pci_bus_to_virt((dev), (addr), PCI_REGION_MEM, (len), (map_flags))
805#define pci_virt_to_io(dev, addr) \
806 pci_virt_to_bus((dev), (addr), PCI_REGION_IO)
807#define pci_io_to_virt(dev, addr, len, map_flags) \
808 pci_bus_to_virt((dev), (addr), PCI_REGION_IO, (len), (map_flags))
wdenkc6097192002-11-03 00:24:07 +0000809
Simon Glassdc5740d2015-08-22 15:58:55 -0600810/* For driver model these are defined in macros in pci_compat.c */
wdenkc6097192002-11-03 00:24:07 +0000811extern int pci_hose_read_config_byte(struct pci_controller *hose,
812 pci_dev_t dev, int where, u8 *val);
813extern int pci_hose_read_config_word(struct pci_controller *hose,
814 pci_dev_t dev, int where, u16 *val);
815extern int pci_hose_read_config_dword(struct pci_controller *hose,
816 pci_dev_t dev, int where, u32 *val);
817extern int pci_hose_write_config_byte(struct pci_controller *hose,
818 pci_dev_t dev, int where, u8 val);
819extern int pci_hose_write_config_word(struct pci_controller *hose,
820 pci_dev_t dev, int where, u16 val);
821extern int pci_hose_write_config_dword(struct pci_controller *hose,
822 pci_dev_t dev, int where, u32 val);
Simon Glass3ba5f742015-11-26 19:51:30 -0700823#endif
wdenkc6097192002-11-03 00:24:07 +0000824
Simon Glass3ba5f742015-11-26 19:51:30 -0700825void pciauto_region_init(struct pci_region *res);
826void pciauto_region_align(struct pci_region *res, pci_size_t size);
827void pciauto_config_init(struct pci_controller *hose);
Tuomas Tynkkynen5ce9aca2018-05-14 23:50:05 +0300828
829/**
830 * pciauto_region_allocate() - Allocate resources from a PCI resource region
831 *
832 * Allocates @size bytes from the PCI resource @res. If @supports_64bit is
833 * false, the result will be guaranteed to fit in 32 bits.
834 *
835 * @res: PCI region to allocate from
836 * @size: Amount of bytes to allocate
837 * @bar: Returns the PCI bus address of the allocated resource
838 * @supports_64bit: Whether to allow allocations above the 32-bit boundary
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100839 * Return: 0 if successful, -1 on failure
Tuomas Tynkkynen5ce9aca2018-05-14 23:50:05 +0300840 */
Simon Glass3ba5f742015-11-26 19:51:30 -0700841int pciauto_region_allocate(struct pci_region *res, pci_size_t size,
Tuomas Tynkkynend71975a2018-05-14 19:38:13 +0300842 pci_addr_t *bar, bool supports_64bit);
Vladimir Oltean2649f692021-09-17 15:11:20 +0300843int pci_skip_dev(struct pci_controller *hose, pci_dev_t dev);
Simon Glass3ba5f742015-11-26 19:51:30 -0700844
Simon Glass26543cc2021-08-01 18:54:16 -0600845#if defined(CONFIG_DM_PCI_COMPAT)
wdenkc6097192002-11-03 00:24:07 +0000846extern int pci_hose_read_config_byte_via_dword(struct pci_controller *hose,
847 pci_dev_t dev, int where, u8 *val);
848extern int pci_hose_read_config_word_via_dword(struct pci_controller *hose,
849 pci_dev_t dev, int where, u16 *val);
850extern int pci_hose_write_config_byte_via_dword(struct pci_controller *hose,
851 pci_dev_t dev, int where, u8 val);
852extern int pci_hose_write_config_word_via_dword(struct pci_controller *hose,
853 pci_dev_t dev, int where, u16 val);
854
Becky Bruce6e61fae2009-02-03 18:10:50 -0600855extern void *pci_map_bar(pci_dev_t pdev, int bar, int flags);
wdenkc6097192002-11-03 00:24:07 +0000856extern void pci_register_hose(struct pci_controller* hose);
857extern struct pci_controller* pci_bus_to_hose(int bus);
Kumar Gala3a0e3c22010-12-17 05:57:25 -0600858extern struct pci_controller *find_hose_by_cfg_addr(void *cfg_addr);
Stuart Yodereeb5b1a2016-03-10 10:52:18 -0600859extern struct pci_controller *pci_get_hose_head(void);
wdenkc6097192002-11-03 00:24:07 +0000860
861extern int pci_hose_scan(struct pci_controller *hose);
862extern int pci_hose_scan_bus(struct pci_controller *hose, int bus);
863
wdenkc6097192002-11-03 00:24:07 +0000864extern void pciauto_setup_device(struct pci_controller *hose,
865 pci_dev_t dev, int bars_num,
866 struct pci_region *mem,
Kumar Galaa1790122006-01-11 13:24:15 -0600867 struct pci_region *prefetch,
wdenkc6097192002-11-03 00:24:07 +0000868 struct pci_region *io);
Linus Walleija3a70722012-03-25 12:13:15 +0000869extern void pciauto_prescan_setup_bridge(struct pci_controller *hose,
870 pci_dev_t dev, int sub_bus);
871extern void pciauto_postscan_setup_bridge(struct pci_controller *hose,
872 pci_dev_t dev, int sub_bus);
Linus Walleija3a70722012-03-25 12:13:15 +0000873extern int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev);
wdenkc6097192002-11-03 00:24:07 +0000874
875extern pci_dev_t pci_find_device (unsigned int vendor, unsigned int device, int index);
876extern pci_dev_t pci_find_devices (struct pci_device_id *ids, int index);
Simon Glass250e0392015-01-27 22:13:27 -0700877pci_dev_t pci_find_class(unsigned int find_class, int index);
wdenkc6097192002-11-03 00:24:07 +0000878
Zhao Qiang287df012013-10-12 13:46:33 +0800879extern int pci_hose_find_capability(struct pci_controller *hose, pci_dev_t dev,
880 int cap);
881extern int pci_hose_find_cap_start(struct pci_controller *hose, pci_dev_t dev,
882 u8 hdr_type);
883extern int pci_find_cap(struct pci_controller *hose, pci_dev_t dev, int pos,
884 int cap);
885
Minghuan Lianed5b5802015-07-10 11:35:08 +0800886int pci_find_next_ext_capability(struct pci_controller *hose,
887 pci_dev_t dev, int start, int cap);
888int pci_hose_find_ext_capability(struct pci_controller *hose,
889 pci_dev_t dev, int cap);
890
Simon Glass26543cc2021-08-01 18:54:16 -0600891#endif /* defined(CONFIG_DM_PCI_COMPAT) */
Tim Harvey09918662014-08-07 22:49:56 -0700892
Peter Tyser983eb9d2010-10-29 17:59:27 -0500893const char * pci_class_str(u8 class);
Anton Vorontsovcc2a8c72009-02-19 18:20:41 +0300894int pci_last_busno(void);
895
Jon Loeliger13a7fcd2006-10-19 11:33:52 -0500896#ifdef CONFIG_MPC85xx
897extern void pci_mpc85xx_init (struct pci_controller *hose);
898#endif
Paul Burtonfa5cec02013-11-08 11:18:47 +0000899
Simon Glasse8a552e2014-11-14 18:18:30 -0700900/**
901 * pci_write_bar32() - Write the address of a BAR including control bits
902 *
Simon Glass9d731c82016-01-18 20:19:15 -0700903 * This writes a raw address (with control bits) to a bar. This can be used
904 * with devices which require hard-coded addresses, not part of the normal
905 * PCI enumeration process.
Simon Glasse8a552e2014-11-14 18:18:30 -0700906 *
Simon Glasse8c09d62021-08-01 18:54:17 -0600907 * This is only available if CONFIG_DM_PCI_COMPAT is enabled
908 *
Simon Glasse8a552e2014-11-14 18:18:30 -0700909 * @hose: PCI hose to use
910 * @dev: PCI device to update
911 * @barnum: BAR number (0-5)
912 * @addr: BAR address with control bits
913 */
914void pci_write_bar32(struct pci_controller *hose, pci_dev_t dev, int barnum,
Simon Glass9d731c82016-01-18 20:19:15 -0700915 u32 addr);
Simon Glasse8a552e2014-11-14 18:18:30 -0700916
917/**
918 * pci_read_bar32() - read the address of a bar
919 *
Simon Glasse8c09d62021-08-01 18:54:17 -0600920 * This is only available if CONFIG_DM_PCI_COMPAT is enabled
921 *
Simon Glasse8a552e2014-11-14 18:18:30 -0700922 * @hose: PCI hose to use
923 * @dev: PCI device to inspect
924 * @barnum: BAR number (0-5)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100925 * Return: address of the bar, masking out any control bits
Simon Glasse8a552e2014-11-14 18:18:30 -0700926 * */
927u32 pci_read_bar32(struct pci_controller *hose, pci_dev_t dev, int barnum);
928
Simon Glass4a2708a2015-01-14 21:37:04 -0700929/**
Simon Glassaab67242015-03-05 12:25:24 -0700930 * pci_hose_find_devices() - Find devices by vendor/device ID
931 *
Simon Glasse8c09d62021-08-01 18:54:17 -0600932 * This is only available if CONFIG_DM_PCI_COMPAT is enabled
933 *
Simon Glassaab67242015-03-05 12:25:24 -0700934 * @hose: PCI hose to search
935 * @busnum: Bus number to search
936 * @ids: PCI vendor/device IDs to look for, terminated by 0, 0 record
937 * @indexp: Pointer to device index to find. To find the first matching
938 * device, pass 0; to find the second, pass 1, etc. This
939 * parameter is decremented for each non-matching device so
940 * can be called repeatedly.
941 */
942pci_dev_t pci_hose_find_devices(struct pci_controller *hose, int busnum,
943 struct pci_device_id *ids, int *indexp);
944
Simon Glassff3e0772015-03-05 12:25:25 -0700945/* Access sizes for PCI reads and writes */
946enum pci_size_t {
947 PCI_SIZE_8,
948 PCI_SIZE_16,
949 PCI_SIZE_32,
950};
951
952struct udevice;
953
Simon Glassff3e0772015-03-05 12:25:25 -0700954/**
Simon Glass8a8d24b2020-12-03 16:55:23 -0700955 * struct pci_child_plat - information stored about each PCI device
Simon Glassff3e0772015-03-05 12:25:25 -0700956 *
957 * Every device on a PCI bus has this per-child data.
958 *
Simon Glasscaa4daa2020-12-03 16:55:18 -0700959 * It can be accessed using dev_get_parent_plat(dev) if dev->parent is a
Simon Glassff3e0772015-03-05 12:25:25 -0700960 * PCI bus (i.e. UCLASS_PCI)
961 *
962 * @devfn: Encoded device and function index - see PCI_DEVFN()
963 * @vendor: PCI vendor ID (see pci_ids.h)
964 * @device: PCI device ID (see pci_ids.h)
965 * @class: PCI class, 3 bytes: (base, sub, prog-if)
Suneel Garapatib8852dc2019-10-19 16:07:20 -0700966 * @is_virtfn: True for Virtual Function device
967 * @pfdev: Handle to Physical Function device
968 * @virtid: Virtual Function Index
Simon Glassff3e0772015-03-05 12:25:25 -0700969 */
Simon Glass8a8d24b2020-12-03 16:55:23 -0700970struct pci_child_plat {
Simon Glassff3e0772015-03-05 12:25:25 -0700971 int devfn;
972 unsigned short vendor;
973 unsigned short device;
974 unsigned int class;
Suneel Garapatib8852dc2019-10-19 16:07:20 -0700975
976 /* Variables for CONFIG_PCI_SRIOV */
977 bool is_virtfn;
978 struct udevice *pfdev;
979 int virtid;
Simon Glassff3e0772015-03-05 12:25:25 -0700980};
981
982/* PCI bus operations */
983struct dm_pci_ops {
984 /**
985 * read_config() - Read a PCI configuration value
986 *
987 * PCI buses must support reading and writing configuration values
988 * so that the bus can be scanned and its devices configured.
989 *
Simon Glass8b85dfc2020-12-16 21:20:07 -0700990 * Normally PCI_BUS(@bdf) is the same as @dev_seq(bus), but not always.
Simon Glassff3e0772015-03-05 12:25:25 -0700991 * If bridges exist it is possible to use the top-level bus to
992 * access a sub-bus. In that case @bus will be the top-level bus
993 * and PCI_BUS(bdf) will be a different (higher) value
994 *
995 * @bus: Bus to read from
996 * @bdf: Bus, device and function to read
997 * @offset: Byte offset within the device's configuration space
998 * @valuep: Place to put the returned value
999 * @size: Access size
1000 * @return 0 if OK, -ve on error
1001 */
Simon Glassc4e72c42020-01-27 08:49:37 -07001002 int (*read_config)(const struct udevice *bus, pci_dev_t bdf,
1003 uint offset, ulong *valuep, enum pci_size_t size);
Simon Glassff3e0772015-03-05 12:25:25 -07001004 /**
1005 * write_config() - Write a PCI configuration value
1006 *
1007 * @bus: Bus to write to
1008 * @bdf: Bus, device and function to write
1009 * @offset: Byte offset within the device's configuration space
1010 * @value: Value to write
1011 * @size: Access size
1012 * @return 0 if OK, -ve on error
1013 */
1014 int (*write_config)(struct udevice *bus, pci_dev_t bdf, uint offset,
1015 ulong value, enum pci_size_t size);
1016};
1017
1018/* Get access to a PCI bus' operations */
1019#define pci_get_ops(dev) ((struct dm_pci_ops *)(dev)->driver->ops)
1020
1021/**
Simon Glass21ccce12015-11-29 13:17:47 -07001022 * dm_pci_get_bdf() - Get the BDF value for a device
Simon Glass4b515e42015-07-06 16:47:46 -06001023 *
1024 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001025 * Return: bus/device/function value (see PCI_BDF())
Simon Glass4b515e42015-07-06 16:47:46 -06001026 */
Simon Glass194fca92020-01-27 08:49:38 -07001027pci_dev_t dm_pci_get_bdf(const struct udevice *dev);
Simon Glass4b515e42015-07-06 16:47:46 -06001028
1029/**
Simon Glassff3e0772015-03-05 12:25:25 -07001030 * pci_bind_bus_devices() - scan a PCI bus and bind devices
1031 *
1032 * Scan a PCI bus looking for devices. Bind each one that is found. If
1033 * devices are already bound that match the scanned devices, just update the
1034 * child data so that the device can be used correctly (this happens when
1035 * the device tree describes devices we expect to see on the bus).
1036 *
1037 * Devices that are bound in this way will use a generic PCI driver which
1038 * does nothing. The device can still be accessed but will not provide any
1039 * driver interface.
1040 *
1041 * @bus: Bus containing devices to bind
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001042 * Return: 0 if OK, -ve on error
Simon Glassff3e0772015-03-05 12:25:25 -07001043 */
1044int pci_bind_bus_devices(struct udevice *bus);
1045
1046/**
1047 * pci_auto_config_devices() - configure bus devices ready for use
1048 *
1049 * This works through all devices on a bus by scanning the driver model
1050 * data structures (normally these have been set up by pci_bind_bus_devices()
1051 * earlier).
1052 *
1053 * Space is allocated for each PCI base address register (BAR) so that the
1054 * devices are mapped into memory and I/O space ready for use.
1055 *
1056 * @bus: Bus containing devices to bind
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001057 * Return: 0 if OK, -ve on error
Simon Glassff3e0772015-03-05 12:25:25 -07001058 */
1059int pci_auto_config_devices(struct udevice *bus);
1060
1061/**
Simon Glassf3f1fae2015-11-29 13:17:48 -07001062 * dm_pci_bus_find_bdf() - Find a device given its PCI bus address
Simon Glassff3e0772015-03-05 12:25:25 -07001063 *
1064 * @bdf: PCI device address: bus, device and function -see PCI_BDF()
1065 * @devp: Returns the device for this address, if found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001066 * Return: 0 if OK, -ENODEV if not found
Simon Glassff3e0772015-03-05 12:25:25 -07001067 */
Simon Glassf3f1fae2015-11-29 13:17:48 -07001068int dm_pci_bus_find_bdf(pci_dev_t bdf, struct udevice **devp);
Simon Glassff3e0772015-03-05 12:25:25 -07001069
1070/**
1071 * pci_bus_find_devfn() - Find a device on a bus
1072 *
1073 * @find_devfn: PCI device address (device and function only)
1074 * @devp: Returns the device for this address, if found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001075 * Return: 0 if OK, -ENODEV if not found
Simon Glassff3e0772015-03-05 12:25:25 -07001076 */
Simon Glassc4e72c42020-01-27 08:49:37 -07001077int pci_bus_find_devfn(const struct udevice *bus, pci_dev_t find_devfn,
Simon Glassff3e0772015-03-05 12:25:25 -07001078 struct udevice **devp);
1079
1080/**
Simon Glass76c3fbc2015-08-10 07:05:04 -06001081 * pci_find_first_device() - return the first available PCI device
1082 *
1083 * This function and pci_find_first_device() allow iteration through all
1084 * available PCI devices on all buses. Assuming there are any, this will
1085 * return the first one.
1086 *
1087 * @devp: Set to the first available device, or NULL if no more are left
1088 * or we got an error
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001089 * Return: 0 if all is OK, -ve on error (e.g. a bus/bridge failed to probe)
Simon Glass76c3fbc2015-08-10 07:05:04 -06001090 */
1091int pci_find_first_device(struct udevice **devp);
1092
1093/**
1094 * pci_find_next_device() - return the next available PCI device
1095 *
1096 * Finds the next available PCI device after the one supplied, or sets @devp
1097 * to NULL if there are no more.
1098 *
1099 * @devp: On entry, the last device returned. Set to the next available
1100 * device, or NULL if no more are left or we got an error
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001101 * Return: 0 if all is OK, -ve on error (e.g. a bus/bridge failed to probe)
Simon Glass76c3fbc2015-08-10 07:05:04 -06001102 */
1103int pci_find_next_device(struct udevice **devp);
1104
1105/**
Simon Glassff3e0772015-03-05 12:25:25 -07001106 * pci_get_ff() - Returns a mask for the given access size
1107 *
1108 * @size: Access size
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001109 * Return: 0xff for PCI_SIZE_8, 0xffff for PCI_SIZE_16, 0xffffffff for
Simon Glassff3e0772015-03-05 12:25:25 -07001110 * PCI_SIZE_32
1111 */
1112int pci_get_ff(enum pci_size_t size);
1113
1114/**
1115 * pci_bus_find_devices () - Find devices on a bus
1116 *
1117 * @bus: Bus to search
1118 * @ids: PCI vendor/device IDs to look for, terminated by 0, 0 record
1119 * @indexp: Pointer to device index to find. To find the first matching
1120 * device, pass 0; to find the second, pass 1, etc. This
1121 * parameter is decremented for each non-matching device so
1122 * can be called repeatedly.
1123 * @devp: Returns matching device if found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001124 * Return: 0 if found, -ENODEV if not
Simon Glassff3e0772015-03-05 12:25:25 -07001125 */
Simon Glasse58f3a72021-06-27 17:50:56 -06001126int pci_bus_find_devices(struct udevice *bus, const struct pci_device_id *ids,
Simon Glassff3e0772015-03-05 12:25:25 -07001127 int *indexp, struct udevice **devp);
1128
1129/**
1130 * pci_find_device_id() - Find a device on any bus
1131 *
1132 * @ids: PCI vendor/device IDs to look for, terminated by 0, 0 record
1133 * @index: Index number of device to find, 0 for the first match, 1 for
1134 * the second, etc.
1135 * @devp: Returns matching device if found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001136 * Return: 0 if found, -ENODEV if not
Simon Glassff3e0772015-03-05 12:25:25 -07001137 */
Simon Glasse58f3a72021-06-27 17:50:56 -06001138int pci_find_device_id(const struct pci_device_id *ids, int index,
Simon Glassff3e0772015-03-05 12:25:25 -07001139 struct udevice **devp);
1140
1141/**
1142 * dm_pci_hose_probe_bus() - probe a subordinate bus, scanning it for devices
1143 *
1144 * This probes the given bus which causes it to be scanned for devices. The
1145 * devices will be bound but not probed.
1146 *
1147 * @hose specifies the PCI hose that will be used for the scan. This is
1148 * always a top-level bus with uclass UCLASS_PCI. The bus to scan is
1149 * in @bdf, and is a subordinate bus reachable from @hose.
1150 *
1151 * @hose: PCI hose to scan
1152 * @bdf: PCI bus address to scan (PCI_BUS(bdf) is the bus number)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001153 * Return: 0 if OK, -ve on error
Simon Glassff3e0772015-03-05 12:25:25 -07001154 */
Simon Glass5e23b8b2015-11-29 13:17:49 -07001155int dm_pci_hose_probe_bus(struct udevice *bus);
Simon Glassff3e0772015-03-05 12:25:25 -07001156
1157/**
1158 * pci_bus_read_config() - Read a configuration value from a device
1159 *
1160 * TODO(sjg@chromium.org): We should be able to pass just a device and have
1161 * it do the right thing. It would be good to have that function also.
1162 *
1163 * @bus: Bus to read from
1164 * @bdf: PCI device address: bus, device and function -see PCI_BDF()
Simon Glass4974a6f2016-03-06 19:27:53 -07001165 * @offset: Register offset to read
Simon Glassff3e0772015-03-05 12:25:25 -07001166 * @valuep: Place to put the returned value
1167 * @size: Access size
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001168 * Return: 0 if OK, -ve on error
Simon Glassff3e0772015-03-05 12:25:25 -07001169 */
Simon Glass194fca92020-01-27 08:49:38 -07001170int pci_bus_read_config(const struct udevice *bus, pci_dev_t bdf, int offset,
Simon Glassff3e0772015-03-05 12:25:25 -07001171 unsigned long *valuep, enum pci_size_t size);
1172
1173/**
1174 * pci_bus_write_config() - Write a configuration value to a device
1175 *
1176 * @bus: Bus to write from
1177 * @bdf: PCI device address: bus, device and function -see PCI_BDF()
Simon Glass4974a6f2016-03-06 19:27:53 -07001178 * @offset: Register offset to write
Simon Glassff3e0772015-03-05 12:25:25 -07001179 * @value: Value to write
1180 * @size: Access size
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001181 * Return: 0 if OK, -ve on error
Simon Glassff3e0772015-03-05 12:25:25 -07001182 */
1183int pci_bus_write_config(struct udevice *bus, pci_dev_t bdf, int offset,
1184 unsigned long value, enum pci_size_t size);
1185
Simon Glass66afb4e2015-08-10 07:05:03 -06001186/**
Simon Glass319dba12016-03-06 19:27:52 -07001187 * pci_bus_clrset_config32() - Update a configuration value for a device
1188 *
1189 * The register at @offset is updated to (oldvalue & ~clr) | set.
1190 *
1191 * @bus: Bus to access
1192 * @bdf: PCI device address: bus, device and function -see PCI_BDF()
1193 * @offset: Register offset to update
1194 * @clr: Bits to clear
1195 * @set: Bits to set
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001196 * Return: 0 if OK, -ve on error
Simon Glass319dba12016-03-06 19:27:52 -07001197 */
1198int pci_bus_clrset_config32(struct udevice *bus, pci_dev_t bdf, int offset,
1199 u32 clr, u32 set);
1200
1201/**
Simon Glass66afb4e2015-08-10 07:05:03 -06001202 * Driver model PCI config access functions. Use these in preference to others
1203 * when you have a valid device
1204 */
Simon Glass194fca92020-01-27 08:49:38 -07001205int dm_pci_read_config(const struct udevice *dev, int offset,
1206 unsigned long *valuep, enum pci_size_t size);
Simon Glass66afb4e2015-08-10 07:05:03 -06001207
Simon Glass194fca92020-01-27 08:49:38 -07001208int dm_pci_read_config8(const struct udevice *dev, int offset, u8 *valuep);
1209int dm_pci_read_config16(const struct udevice *dev, int offset, u16 *valuep);
1210int dm_pci_read_config32(const struct udevice *dev, int offset, u32 *valuep);
Simon Glass66afb4e2015-08-10 07:05:03 -06001211
1212int dm_pci_write_config(struct udevice *dev, int offset, unsigned long value,
1213 enum pci_size_t size);
1214
1215int dm_pci_write_config8(struct udevice *dev, int offset, u8 value);
1216int dm_pci_write_config16(struct udevice *dev, int offset, u16 value);
1217int dm_pci_write_config32(struct udevice *dev, int offset, u32 value);
1218
Simon Glass319dba12016-03-06 19:27:52 -07001219/**
1220 * These permit convenient read/modify/write on PCI configuration. The
1221 * register is updated to (oldvalue & ~clr) | set.
1222 */
1223int dm_pci_clrset_config8(struct udevice *dev, int offset, u32 clr, u32 set);
1224int dm_pci_clrset_config16(struct udevice *dev, int offset, u32 clr, u32 set);
1225int dm_pci_clrset_config32(struct udevice *dev, int offset, u32 clr, u32 set);
1226
Simon Glassff3e0772015-03-05 12:25:25 -07001227/*
1228 * The following functions provide access to the above without needing the
1229 * size parameter. We are trying to encourage the use of the 8/16/32-style
1230 * functions, rather than byte/word/dword. But both are supported.
1231 */
1232int pci_write_config32(pci_dev_t pcidev, int offset, u32 value);
Bin Meng308143e2016-02-02 05:58:07 -08001233int pci_write_config16(pci_dev_t pcidev, int offset, u16 value);
1234int pci_write_config8(pci_dev_t pcidev, int offset, u8 value);
1235int pci_read_config32(pci_dev_t pcidev, int offset, u32 *valuep);
1236int pci_read_config16(pci_dev_t pcidev, int offset, u16 *valuep);
1237int pci_read_config8(pci_dev_t pcidev, int offset, u8 *valuep);
Simon Glassff3e0772015-03-05 12:25:25 -07001238
Tuomas Tynkkynenbadb9922017-09-19 23:18:03 +03001239/**
1240 * pci_generic_mmap_write_config() - Generic helper for writing to
1241 * memory-mapped PCI configuration space.
1242 * @bus: Pointer to the PCI bus
1243 * @addr_f: Callback for calculating the config space address
1244 * @bdf: Identifies the PCI device to access
1245 * @offset: The offset into the device's configuration space
1246 * @value: The value to write
1247 * @size: Indicates the size of access to perform
1248 *
1249 * Write the value @value of size @size from offset @offset within the
1250 * configuration space of the device identified by the bus, device & function
1251 * numbers in @bdf on the PCI bus @bus. The callback function @addr_f is
1252 * responsible for calculating the CPU address of the respective configuration
1253 * space offset.
1254 *
1255 * Return: 0 on success, else -EINVAL
1256 */
1257int pci_generic_mmap_write_config(
Simon Glassc4e72c42020-01-27 08:49:37 -07001258 const struct udevice *bus,
1259 int (*addr_f)(const struct udevice *bus, pci_dev_t bdf, uint offset,
1260 void **addrp),
Tuomas Tynkkynenbadb9922017-09-19 23:18:03 +03001261 pci_dev_t bdf,
1262 uint offset,
1263 ulong value,
1264 enum pci_size_t size);
1265
1266/**
1267 * pci_generic_mmap_read_config() - Generic helper for reading from
1268 * memory-mapped PCI configuration space.
1269 * @bus: Pointer to the PCI bus
1270 * @addr_f: Callback for calculating the config space address
1271 * @bdf: Identifies the PCI device to access
1272 * @offset: The offset into the device's configuration space
1273 * @valuep: A pointer at which to store the read value
1274 * @size: Indicates the size of access to perform
1275 *
1276 * Read a value of size @size from offset @offset within the configuration
1277 * space of the device identified by the bus, device & function numbers in @bdf
1278 * on the PCI bus @bus. The callback function @addr_f is responsible for
1279 * calculating the CPU address of the respective configuration space offset.
1280 *
1281 * Return: 0 on success, else -EINVAL
1282 */
1283int pci_generic_mmap_read_config(
Simon Glassc4e72c42020-01-27 08:49:37 -07001284 const struct udevice *bus,
1285 int (*addr_f)(const struct udevice *bus, pci_dev_t bdf, uint offset,
1286 void **addrp),
Tuomas Tynkkynenbadb9922017-09-19 23:18:03 +03001287 pci_dev_t bdf,
1288 uint offset,
1289 ulong *valuep,
1290 enum pci_size_t size);
1291
Suneel Garapatib8852dc2019-10-19 16:07:20 -07001292#if defined(CONFIG_PCI_SRIOV)
1293/**
1294 * pci_sriov_init() - Scan Virtual Function devices
1295 *
1296 * @pdev: Physical Function udevice handle
1297 * @vf_en: Number of Virtual Function devices to enable
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001298 * Return: 0 on success, -ve on error
Suneel Garapatib8852dc2019-10-19 16:07:20 -07001299 */
1300int pci_sriov_init(struct udevice *pdev, int vf_en);
1301
1302/**
1303 * pci_sriov_get_totalvfs() - Get total available Virtual Function devices
1304 *
1305 * @pdev: Physical Function udevice handle
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001306 * Return: count on success, -ve on error
Suneel Garapatib8852dc2019-10-19 16:07:20 -07001307 */
1308int pci_sriov_get_totalvfs(struct udevice *pdev);
1309#endif
1310
Simon Glass3ba5f742015-11-26 19:51:30 -07001311#ifdef CONFIG_DM_PCI_COMPAT
Simon Glassff3e0772015-03-05 12:25:25 -07001312/* Compatibility with old naming */
1313static inline int pci_write_config_dword(pci_dev_t pcidev, int offset,
1314 u32 value)
1315{
1316 return pci_write_config32(pcidev, offset, value);
1317}
1318
Simon Glassff3e0772015-03-05 12:25:25 -07001319/* Compatibility with old naming */
1320static inline int pci_write_config_word(pci_dev_t pcidev, int offset,
1321 u16 value)
1322{
1323 return pci_write_config16(pcidev, offset, value);
1324}
1325
Simon Glassff3e0772015-03-05 12:25:25 -07001326/* Compatibility with old naming */
1327static inline int pci_write_config_byte(pci_dev_t pcidev, int offset,
1328 u8 value)
1329{
1330 return pci_write_config8(pcidev, offset, value);
1331}
1332
Simon Glassff3e0772015-03-05 12:25:25 -07001333/* Compatibility with old naming */
1334static inline int pci_read_config_dword(pci_dev_t pcidev, int offset,
1335 u32 *valuep)
1336{
1337 return pci_read_config32(pcidev, offset, valuep);
1338}
1339
Simon Glassff3e0772015-03-05 12:25:25 -07001340/* Compatibility with old naming */
1341static inline int pci_read_config_word(pci_dev_t pcidev, int offset,
1342 u16 *valuep)
1343{
1344 return pci_read_config16(pcidev, offset, valuep);
1345}
1346
Simon Glassff3e0772015-03-05 12:25:25 -07001347/* Compatibility with old naming */
1348static inline int pci_read_config_byte(pci_dev_t pcidev, int offset,
1349 u8 *valuep)
1350{
1351 return pci_read_config8(pcidev, offset, valuep);
1352}
Simon Glass3ba5f742015-11-26 19:51:30 -07001353#endif /* CONFIG_DM_PCI_COMPAT */
1354
1355/**
1356 * dm_pciauto_config_device() - configure a device ready for use
1357 *
1358 * Space is allocated for each PCI base address register (BAR) so that the
1359 * devices are mapped into memory and I/O space ready for use.
1360 *
1361 * @dev: Device to configure
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001362 * Return: 0 if OK, -ve on error
Simon Glass3ba5f742015-11-26 19:51:30 -07001363 */
1364int dm_pciauto_config_device(struct udevice *dev);
1365
Simon Glass36d0d3b2015-03-05 12:25:28 -07001366/**
Simon Glass9289db62015-11-19 20:26:59 -07001367 * pci_conv_32_to_size() - convert a 32-bit read value to the given size
1368 *
1369 * Some PCI buses must always perform 32-bit reads. The data must then be
1370 * shifted and masked to reflect the required access size and offset. This
1371 * function performs this transformation.
1372 *
1373 * @value: Value to transform (32-bit value read from @offset & ~3)
1374 * @offset: Register offset that was read
1375 * @size: Required size of the result
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001376 * Return: the value that would have been obtained if the read had been
Simon Glass9289db62015-11-19 20:26:59 -07001377 * performed at the given offset with the correct size
1378 */
1379ulong pci_conv_32_to_size(ulong value, uint offset, enum pci_size_t size);
1380
1381/**
1382 * pci_conv_size_to_32() - update a 32-bit value to prepare for a write
1383 *
1384 * Some PCI buses must always perform 32-bit writes. To emulate a smaller
1385 * write the old 32-bit data must be read, updated with the required new data
1386 * and written back as a 32-bit value. This function performs the
1387 * transformation from the old value to the new value.
1388 *
1389 * @value: Value to transform (32-bit value read from @offset & ~3)
1390 * @offset: Register offset that should be written
1391 * @size: Required size of the write
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001392 * Return: the value that should be written as a 32-bit access to @offset & ~3.
Simon Glass9289db62015-11-19 20:26:59 -07001393 */
1394ulong pci_conv_size_to_32(ulong old, ulong value, uint offset,
1395 enum pci_size_t size);
1396
1397/**
Simon Glass9f60fb02015-11-19 20:27:00 -07001398 * pci_get_controller() - obtain the controller to use for a bus
1399 *
1400 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001401 * Return: pointer to the controller device for this bus
Simon Glass9f60fb02015-11-19 20:27:00 -07001402 */
1403struct udevice *pci_get_controller(struct udevice *dev);
1404
1405/**
Simon Glassf9260332015-11-19 20:27:01 -07001406 * pci_get_regions() - obtain pointers to all the region types
1407 *
1408 * @dev: Device to check
1409 * @iop: Returns a pointer to the I/O region, or NULL if none
1410 * @memp: Returns a pointer to the memory region, or NULL if none
1411 * @prefp: Returns a pointer to the pre-fetch region, or NULL if none
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001412 * Return: the number of non-NULL regions returned, normally 3
Simon Glassf9260332015-11-19 20:27:01 -07001413 */
1414int pci_get_regions(struct udevice *dev, struct pci_region **iop,
1415 struct pci_region **memp, struct pci_region **prefp);
Rayagonda Kokatanur143eb5b2020-05-12 13:29:49 +05301416int
1417pci_get_dma_regions(struct udevice *dev, struct pci_region *memp, int index);
Simon Glassf9260332015-11-19 20:27:01 -07001418/**
Simon Glass9d731c82016-01-18 20:19:15 -07001419 * dm_pci_write_bar32() - Write the address of a BAR
1420 *
1421 * This writes a raw address to a bar
1422 *
1423 * @dev: PCI device to update
1424 * @barnum: BAR number (0-5)
1425 * @addr: BAR address
1426 */
1427void dm_pci_write_bar32(struct udevice *dev, int barnum, u32 addr);
1428
1429/**
Simon Glassbab17cf2015-11-29 13:17:53 -07001430 * dm_pci_read_bar32() - read a base address register from a device
1431 *
1432 * @dev: Device to check
1433 * @barnum: Bar number to read (numbered from 0)
1434 * @return: value of BAR
1435 */
Simon Glass194fca92020-01-27 08:49:38 -07001436u32 dm_pci_read_bar32(const struct udevice *dev, int barnum);
Simon Glassbab17cf2015-11-29 13:17:53 -07001437
1438/**
Simon Glass21d1fe72015-11-29 13:18:03 -07001439 * dm_pci_bus_to_phys() - convert a PCI bus address to a physical address
1440 *
1441 * @dev: Device containing the PCI address
1442 * @addr: PCI address to convert
1443 * @flags: Flags for the region type (PCI_REGION_...)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001444 * Return: physical address corresponding to that PCI bus address
Simon Glass21d1fe72015-11-29 13:18:03 -07001445 */
1446phys_addr_t dm_pci_bus_to_phys(struct udevice *dev, pci_addr_t addr,
1447 unsigned long flags);
1448
1449/**
1450 * dm_pci_phys_to_bus() - convert a physical address to a PCI bus address
1451 *
1452 * @dev: Device containing the bus address
1453 * @addr: Physical address to convert
1454 * @flags: Flags for the region type (PCI_REGION_...)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001455 * Return: PCI bus address corresponding to that physical address
Simon Glass21d1fe72015-11-29 13:18:03 -07001456 */
1457pci_addr_t dm_pci_phys_to_bus(struct udevice *dev, phys_addr_t addr,
1458 unsigned long flags);
1459
1460/**
1461 * dm_pci_map_bar() - get a virtual address associated with a BAR region
1462 *
1463 * Looks up a base address register and finds the physical memory address
Alex Marginean2204bc12019-06-07 11:24:22 +03001464 * that corresponds to it.
1465 * Can be used for 32b BARs 0-5 on type 0 functions and for 32b BARs 0-1 on
1466 * type 1 functions.
Alex Marginean0b143d82019-06-07 11:24:23 +03001467 * Can also be used on type 0 functions that support Enhanced Allocation for
1468 * 32b/64b BARs. Note that duplicate BEI entries are not supported.
Simon Glass21d1fe72015-11-29 13:18:03 -07001469 *
1470 * @dev: Device to check
Alex Marginean2204bc12019-06-07 11:24:22 +03001471 * @bar: Bar register offset (PCI_BASE_ADDRESS_...)
Simon Glass21d1fe72015-11-29 13:18:03 -07001472 * @flags: Flags for the region type (PCI_REGION_...)
Alex Marginean2204bc12019-06-07 11:24:22 +03001473 * @return: pointer to the virtual address to use or 0 on error
Simon Glass21d1fe72015-11-29 13:18:03 -07001474 */
1475void *dm_pci_map_bar(struct udevice *dev, int bar, int flags);
1476
Bin Mengdac01fd2018-08-03 01:14:52 -07001477/**
Bin Menga8c5f8d2018-10-15 02:21:21 -07001478 * dm_pci_find_next_capability() - find a capability starting from an offset
1479 *
1480 * Tell if a device supports a given PCI capability. Returns the
1481 * address of the requested capability structure within the device's
1482 * PCI configuration space or 0 in case the device does not support it.
1483 *
1484 * Possible values for @cap:
1485 *
1486 * %PCI_CAP_ID_MSI Message Signalled Interrupts
1487 * %PCI_CAP_ID_PCIX PCI-X
1488 * %PCI_CAP_ID_EXP PCI Express
1489 * %PCI_CAP_ID_MSIX MSI-X
1490 *
1491 * See PCI_CAP_ID_xxx for the complete capability ID codes.
1492 *
1493 * @dev: PCI device to query
1494 * @start: offset to start from
1495 * @cap: capability code
1496 * @return: capability address or 0 if not supported
1497 */
1498int dm_pci_find_next_capability(struct udevice *dev, u8 start, int cap);
1499
1500/**
Bin Mengdac01fd2018-08-03 01:14:52 -07001501 * dm_pci_find_capability() - find a capability
1502 *
1503 * Tell if a device supports a given PCI capability. Returns the
1504 * address of the requested capability structure within the device's
1505 * PCI configuration space or 0 in case the device does not support it.
1506 *
1507 * Possible values for @cap:
1508 *
1509 * %PCI_CAP_ID_MSI Message Signalled Interrupts
1510 * %PCI_CAP_ID_PCIX PCI-X
1511 * %PCI_CAP_ID_EXP PCI Express
1512 * %PCI_CAP_ID_MSIX MSI-X
1513 *
1514 * See PCI_CAP_ID_xxx for the complete capability ID codes.
1515 *
1516 * @dev: PCI device to query
1517 * @cap: capability code
1518 * @return: capability address or 0 if not supported
1519 */
1520int dm_pci_find_capability(struct udevice *dev, int cap);
1521
1522/**
Bin Menga8c5f8d2018-10-15 02:21:21 -07001523 * dm_pci_find_next_ext_capability() - find an extended capability
1524 * starting from an offset
1525 *
1526 * Tell if a device supports a given PCI express extended capability.
1527 * Returns the address of the requested extended capability structure
1528 * within the device's PCI configuration space or 0 in case the device
1529 * does not support it.
1530 *
1531 * Possible values for @cap:
1532 *
1533 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
1534 * %PCI_EXT_CAP_ID_VC Virtual Channel
1535 * %PCI_EXT_CAP_ID_DSN Device Serial Number
1536 * %PCI_EXT_CAP_ID_PWR Power Budgeting
1537 *
1538 * See PCI_EXT_CAP_ID_xxx for the complete extended capability ID codes.
1539 *
1540 * @dev: PCI device to query
1541 * @start: offset to start from
1542 * @cap: extended capability code
1543 * @return: extended capability address or 0 if not supported
1544 */
1545int dm_pci_find_next_ext_capability(struct udevice *dev, int start, int cap);
1546
1547/**
Bin Mengdac01fd2018-08-03 01:14:52 -07001548 * dm_pci_find_ext_capability() - find an extended capability
1549 *
1550 * Tell if a device supports a given PCI express extended capability.
1551 * Returns the address of the requested extended capability structure
1552 * within the device's PCI configuration space or 0 in case the device
1553 * does not support it.
1554 *
1555 * Possible values for @cap:
1556 *
1557 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
1558 * %PCI_EXT_CAP_ID_VC Virtual Channel
1559 * %PCI_EXT_CAP_ID_DSN Device Serial Number
1560 * %PCI_EXT_CAP_ID_PWR Power Budgeting
1561 *
1562 * See PCI_EXT_CAP_ID_xxx for the complete extended capability ID codes.
1563 *
1564 * @dev: PCI device to query
1565 * @cap: extended capability code
1566 * @return: extended capability address or 0 if not supported
1567 */
1568int dm_pci_find_ext_capability(struct udevice *dev, int cap);
1569
Alex Margineanb8e1f822019-06-07 11:24:25 +03001570/**
1571 * dm_pci_flr() - Perform FLR if the device suppoorts it
1572 *
1573 * @dev: PCI device to reset
1574 * @return: 0 if OK, -ENOENT if FLR is not supported by dev
1575 */
1576int dm_pci_flr(struct udevice *dev);
1577
Simon Glass21d1fe72015-11-29 13:18:03 -07001578#define dm_pci_virt_to_bus(dev, addr, flags) \
1579 dm_pci_phys_to_bus(dev, (virt_to_phys(addr)), (flags))
1580#define dm_pci_bus_to_virt(dev, addr, flags, len, map_flags) \
1581 map_physmem(dm_pci_bus_to_phys(dev, (addr), (flags)), \
1582 (len), (map_flags))
1583
1584#define dm_pci_phys_to_mem(dev, addr) \
1585 dm_pci_phys_to_bus((dev), (addr), PCI_REGION_MEM)
1586#define dm_pci_mem_to_phys(dev, addr) \
1587 dm_pci_bus_to_phys((dev), (addr), PCI_REGION_MEM)
1588#define dm_pci_phys_to_io(dev, addr) \
1589 dm_pci_phys_to_bus((dev), (addr), PCI_REGION_IO)
1590#define dm_pci_io_to_phys(dev, addr) \
1591 dm_pci_bus_to_phys((dev), (addr), PCI_REGION_IO)
1592
1593#define dm_pci_virt_to_mem(dev, addr) \
1594 dm_pci_virt_to_bus((dev), (addr), PCI_REGION_MEM)
1595#define dm_pci_mem_to_virt(dev, addr, len, map_flags) \
1596 dm_pci_bus_to_virt((dev), (addr), PCI_REGION_MEM, (len), (map_flags))
1597#define dm_pci_virt_to_io(dev, addr) \
Simon Glass4974a6f2016-03-06 19:27:53 -07001598 dm_pci_virt_to_bus((dev), (addr), PCI_REGION_IO)
Simon Glass21d1fe72015-11-29 13:18:03 -07001599#define dm_pci_io_to_virt(dev, addr, len, map_flags) \
Simon Glass4974a6f2016-03-06 19:27:53 -07001600 dm_pci_bus_to_virt((dev), (addr), PCI_REGION_IO, (len), (map_flags))
Simon Glass21d1fe72015-11-29 13:18:03 -07001601
1602/**
Simon Glass5c0bf642015-11-29 13:17:50 -07001603 * dm_pci_find_device() - find a device by vendor/device ID
1604 *
1605 * @vendor: Vendor ID
1606 * @device: Device ID
1607 * @index: 0 to find the first match, 1 for second, etc.
1608 * @devp: Returns pointer to the device, if found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001609 * Return: 0 if found, -ve on error
Simon Glass5c0bf642015-11-29 13:17:50 -07001610 */
1611int dm_pci_find_device(unsigned int vendor, unsigned int device, int index,
1612 struct udevice **devp);
1613
1614/**
Simon Glassa0eb8352015-11-29 13:17:52 -07001615 * dm_pci_find_class() - find a device by class
1616 *
1617 * @find_class: 3-byte (24-bit) class value to find
1618 * @index: 0 to find the first match, 1 for second, etc.
1619 * @devp: Returns pointer to the device, if found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001620 * Return: 0 if found, -ve on error
Simon Glassa0eb8352015-11-29 13:17:52 -07001621 */
1622int dm_pci_find_class(uint find_class, int index, struct udevice **devp);
1623
1624/**
Simon Glass6498fda2019-09-21 14:32:41 -06001625 * struct pci_emul_uc_priv - holds info about an emulator device
1626 *
1627 * There is always at most one emulator per client
1628 *
1629 * @client: Client device if any, else NULL
1630 */
1631struct pci_emul_uc_priv {
1632 struct udevice *client;
1633};
1634
1635/**
Simon Glass36d0d3b2015-03-05 12:25:28 -07001636 * struct dm_pci_emul_ops - PCI device emulator operations
1637 */
1638struct dm_pci_emul_ops {
1639 /**
Simon Glass36d0d3b2015-03-05 12:25:28 -07001640 * read_config() - Read a PCI configuration value
1641 *
1642 * @dev: Emulated device to read from
1643 * @offset: Byte offset within the device's configuration space
1644 * @valuep: Place to put the returned value
1645 * @size: Access size
1646 * @return 0 if OK, -ve on error
1647 */
Simon Glassc4e72c42020-01-27 08:49:37 -07001648 int (*read_config)(const struct udevice *dev, uint offset,
1649 ulong *valuep, enum pci_size_t size);
Simon Glass36d0d3b2015-03-05 12:25:28 -07001650 /**
1651 * write_config() - Write a PCI configuration value
1652 *
1653 * @dev: Emulated device to write to
1654 * @offset: Byte offset within the device's configuration space
1655 * @value: Value to write
1656 * @size: Access size
1657 * @return 0 if OK, -ve on error
1658 */
1659 int (*write_config)(struct udevice *dev, uint offset, ulong value,
1660 enum pci_size_t size);
1661 /**
1662 * read_io() - Read a PCI I/O value
1663 *
1664 * @dev: Emulated device to read from
1665 * @addr: I/O address to read
1666 * @valuep: Place to put the returned value
1667 * @size: Access size
1668 * @return 0 if OK, -ENOENT if @addr is not mapped by this device,
1669 * other -ve value on error
1670 */
1671 int (*read_io)(struct udevice *dev, unsigned int addr, ulong *valuep,
1672 enum pci_size_t size);
1673 /**
1674 * write_io() - Write a PCI I/O value
1675 *
1676 * @dev: Emulated device to write from
1677 * @addr: I/O address to write
1678 * @value: Value to write
1679 * @size: Access size
1680 * @return 0 if OK, -ENOENT if @addr is not mapped by this device,
1681 * other -ve value on error
1682 */
1683 int (*write_io)(struct udevice *dev, unsigned int addr,
1684 ulong value, enum pci_size_t size);
1685 /**
1686 * map_physmem() - Map a device into sandbox memory
1687 *
1688 * @dev: Emulated device to map
1689 * @addr: Memory address, normally corresponding to a PCI BAR.
1690 * The device should have been configured to have a BAR
1691 * at this address.
1692 * @lenp: On entry, the size of the area to map, On exit it is
1693 * updated to the size actually mapped, which may be less
1694 * if the device has less space
1695 * @ptrp: Returns a pointer to the mapped address. The device's
1696 * space can be accessed as @lenp bytes starting here
1697 * @return 0 if OK, -ENOENT if @addr is not mapped by this device,
1698 * other -ve value on error
1699 */
1700 int (*map_physmem)(struct udevice *dev, phys_addr_t addr,
1701 unsigned long *lenp, void **ptrp);
1702 /**
1703 * unmap_physmem() - undo a memory mapping
1704 *
1705 * This must be called after map_physmem() to undo the mapping.
1706 * Some devices can use this to check what has been written into
1707 * their mapped memory and perform an operations they require on it.
1708 * In this way, map/unmap can be used as a sort of handshake between
1709 * the emulated device and its users.
1710 *
1711 * @dev: Emuated device to unmap
1712 * @vaddr: Mapped memory address, as passed to map_physmem()
1713 * @len: Size of area mapped, as returned by map_physmem()
1714 * @return 0 if OK, -ve on error
1715 */
1716 int (*unmap_physmem)(struct udevice *dev, const void *vaddr,
1717 unsigned long len);
1718};
1719
1720/* Get access to a PCI device emulator's operations */
1721#define pci_get_emul_ops(dev) ((struct dm_pci_emul_ops *)(dev)->driver->ops)
1722
1723/**
1724 * sandbox_pci_get_emul() - Get the emulation device for a PCI device
1725 *
1726 * Searches for a suitable emulator for the given PCI bus device
1727 *
1728 * @bus: PCI bus to search
1729 * @find_devfn: PCI device and function address (PCI_DEVFN())
Bin Meng43459982018-08-03 01:14:45 -07001730 * @containerp: Returns container device if found
Simon Glass36d0d3b2015-03-05 12:25:28 -07001731 * @emulp: Returns emulated device if found
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001732 * Return: 0 if found, -ENODEV if not found
Simon Glass36d0d3b2015-03-05 12:25:28 -07001733 */
Simon Glassc4e72c42020-01-27 08:49:37 -07001734int sandbox_pci_get_emul(const struct udevice *bus, pci_dev_t find_devfn,
Bin Meng43459982018-08-03 01:14:45 -07001735 struct udevice **containerp, struct udevice **emulp);
Simon Glass36d0d3b2015-03-05 12:25:28 -07001736
Stefan Roeseb5214202019-01-25 11:52:42 +01001737/**
Simon Glass6498fda2019-09-21 14:32:41 -06001738 * sandbox_pci_get_client() - Find the client for an emulation device
1739 *
1740 * @emul: Emulation device to check
1741 * @devp: Returns the client device emulated by this device
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01001742 * Return: 0 if OK, -ENOENT if the device has no client yet
Simon Glass6498fda2019-09-21 14:32:41 -06001743 */
1744int sandbox_pci_get_client(struct udevice *emul, struct udevice **devp);
1745
Tim Harveycecd0132021-04-16 14:53:47 -07001746/**
1747 * board_pci_fixup_dev() - Board callback for PCI device fixups
1748 *
1749 * @bus: PCI bus
1750 * @dev: PCI device
1751 */
1752extern void board_pci_fixup_dev(struct udevice *bus, struct udevice *dev);
1753
Simon Glassaba92962015-07-06 16:47:44 -06001754/**
1755 * PCI_DEVICE - macro used to describe a specific pci device
1756 * @vend: the 16 bit PCI Vendor ID
1757 * @dev: the 16 bit PCI Device ID
1758 *
1759 * This macro is used to create a struct pci_device_id that matches a
1760 * specific device. The subvendor and subdevice fields will be set to
1761 * PCI_ANY_ID.
1762 */
1763#define PCI_DEVICE(vend, dev) \
1764 .vendor = (vend), .device = (dev), \
1765 .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID
1766
1767/**
1768 * PCI_DEVICE_SUB - macro used to describe a specific pci device with subsystem
1769 * @vend: the 16 bit PCI Vendor ID
1770 * @dev: the 16 bit PCI Device ID
1771 * @subvend: the 16 bit PCI Subvendor ID
1772 * @subdev: the 16 bit PCI Subdevice ID
1773 *
1774 * This macro is used to create a struct pci_device_id that matches a
1775 * specific device with subsystem information.
1776 */
1777#define PCI_DEVICE_SUB(vend, dev, subvend, subdev) \
1778 .vendor = (vend), .device = (dev), \
1779 .subvendor = (subvend), .subdevice = (subdev)
1780
1781/**
1782 * PCI_DEVICE_CLASS - macro used to describe a specific pci device class
1783 * @dev_class: the class, subclass, prog-if triple for this device
1784 * @dev_class_mask: the class mask for this device
1785 *
1786 * This macro is used to create a struct pci_device_id that matches a
1787 * specific PCI class. The vendor, device, subvendor, and subdevice
1788 * fields will be set to PCI_ANY_ID.
1789 */
1790#define PCI_DEVICE_CLASS(dev_class, dev_class_mask) \
1791 .class = (dev_class), .class_mask = (dev_class_mask), \
1792 .vendor = PCI_ANY_ID, .device = PCI_ANY_ID, \
1793 .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID
1794
1795/**
1796 * PCI_VDEVICE - macro used to describe a specific pci device in short form
1797 * @vend: the vendor name
1798 * @dev: the 16 bit PCI Device ID
1799 *
1800 * This macro is used to create a struct pci_device_id that matches a
1801 * specific PCI device. The subvendor, and subdevice fields will be set
1802 * to PCI_ANY_ID. The macro allows the next field to follow as the device
1803 * private data.
1804 */
1805
1806#define PCI_VDEVICE(vend, dev) \
1807 .vendor = PCI_VENDOR_ID_##vend, .device = (dev), \
1808 .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, 0, 0
1809
1810/**
1811 * struct pci_driver_entry - Matches a driver to its pci_device_id list
1812 * @driver: Driver to use
1813 * @match: List of match records for this driver, terminated by {}
1814 */
1815struct pci_driver_entry {
1816 struct driver *driver;
1817 const struct pci_device_id *match;
1818};
1819
1820#define U_BOOT_PCI_DEVICE(__name, __match) \
1821 ll_entry_declare(struct pci_driver_entry, __name, pci_driver_entry) = {\
1822 .driver = llsym(struct driver, __name, driver), \
1823 .match = __match, \
1824 }
Simon Glassff3e0772015-03-05 12:25:25 -07001825
Paul Burtonfa5cec02013-11-08 11:18:47 +00001826#endif /* __ASSEMBLY__ */
1827#endif /* _PCI_H */