blob: ea3b73923d60c4ea55fdd15d01af019f86d3f40c [file] [log] [blame]
Tom Rini10e47792018-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. Rozycki93008ab2021-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 Lianc5bc6aa2015-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 Menga7366f02018-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 */
58#define PCI_CLASS_SUB_CODE 0x0a /* Device sub-class code */
59
60#define PCI_CACHE_LINE_SIZE 0x0c /* 8 bits */
61#define PCI_LATENCY_TIMER 0x0d /* 8 bits */
62#define PCI_HEADER_TYPE 0x0e /* 8 bits */
63#define PCI_HEADER_TYPE_NORMAL 0
64#define PCI_HEADER_TYPE_BRIDGE 1
65#define PCI_HEADER_TYPE_CARDBUS 2
66
67#define PCI_BIST 0x0f /* 8 bits */
68#define PCI_BIST_CODE_MASK 0x0f /* Return result */
69#define PCI_BIST_START 0x40 /* 1 to start BIST, 2 secs or less */
70#define PCI_BIST_CAPABLE 0x80 /* 1 if BIST capable */
71
72/*
73 * Base addresses specify locations in memory or I/O space.
74 * Decoded size can be determined by writing a value of
75 * 0xffffffff to the register, and reading it back. Only
76 * 1 bits are decoded.
77 */
78#define PCI_BASE_ADDRESS_0 0x10 /* 32 bits */
79#define PCI_BASE_ADDRESS_1 0x14 /* 32 bits [htype 0,1 only] */
80#define PCI_BASE_ADDRESS_2 0x18 /* 32 bits [htype 0 only] */
81#define PCI_BASE_ADDRESS_3 0x1c /* 32 bits */
82#define PCI_BASE_ADDRESS_4 0x20 /* 32 bits */
83#define PCI_BASE_ADDRESS_5 0x24 /* 32 bits */
84#define PCI_BASE_ADDRESS_SPACE 0x01 /* 0 = memory, 1 = I/O */
85#define PCI_BASE_ADDRESS_SPACE_IO 0x01
86#define PCI_BASE_ADDRESS_SPACE_MEMORY 0x00
87#define PCI_BASE_ADDRESS_MEM_TYPE_MASK 0x06
88#define PCI_BASE_ADDRESS_MEM_TYPE_32 0x00 /* 32 bit address */
89#define PCI_BASE_ADDRESS_MEM_TYPE_1M 0x02 /* Below 1M [obsolete] */
90#define PCI_BASE_ADDRESS_MEM_TYPE_64 0x04 /* 64 bit address */
91#define PCI_BASE_ADDRESS_MEM_PREFETCH 0x08 /* prefetchable? */
Kumar Galaad714f52008-10-21 08:36:08 -050092#define PCI_BASE_ADDRESS_MEM_MASK (~0x0fULL)
93#define PCI_BASE_ADDRESS_IO_MASK (~0x03ULL)
wdenkc6097192002-11-03 00:24:07 +000094/* bit 1 is reserved if address_space = 1 */
95
Simon Glass130d7ff2019-09-25 08:56:06 -060096/* Convert a regsister address (e.g. PCI_BASE_ADDRESS_1) to a bar # (e.g. 1) */
97#define pci_offset_to_barnum(offset) \
98 (((offset) - PCI_BASE_ADDRESS_0) / sizeof(u32))
99
wdenkc6097192002-11-03 00:24:07 +0000100/* Header type 0 (normal devices) */
101#define PCI_CARDBUS_CIS 0x28
102#define PCI_SUBSYSTEM_VENDOR_ID 0x2c
103#define PCI_SUBSYSTEM_ID 0x2e
104#define PCI_ROM_ADDRESS 0x30 /* Bits 31..11 are address, 10..1 reserved */
105#define PCI_ROM_ADDRESS_ENABLE 0x01
Kumar Galaad714f52008-10-21 08:36:08 -0500106#define PCI_ROM_ADDRESS_MASK (~0x7ffULL)
wdenkc6097192002-11-03 00:24:07 +0000107
108#define PCI_CAPABILITY_LIST 0x34 /* Offset of first capability list entry */
109
110/* 0x35-0x3b are reserved */
111#define PCI_INTERRUPT_LINE 0x3c /* 8 bits */
112#define PCI_INTERRUPT_PIN 0x3d /* 8 bits */
113#define PCI_MIN_GNT 0x3e /* 8 bits */
114#define PCI_MAX_LAT 0x3f /* 8 bits */
115
Simon Glass84f57332015-07-27 15:47:17 -0600116#define PCI_INTERRUPT_LINE_DISABLE 0xff
117
wdenkc6097192002-11-03 00:24:07 +0000118/* Header type 1 (PCI-to-PCI bridges) */
119#define PCI_PRIMARY_BUS 0x18 /* Primary bus number */
120#define PCI_SECONDARY_BUS 0x19 /* Secondary bus number */
121#define PCI_SUBORDINATE_BUS 0x1a /* Highest bus number behind the bridge */
122#define PCI_SEC_LATENCY_TIMER 0x1b /* Latency timer for secondary interface */
123#define PCI_IO_BASE 0x1c /* I/O range behind the bridge */
124#define PCI_IO_LIMIT 0x1d
125#define PCI_IO_RANGE_TYPE_MASK 0x0f /* I/O bridging type */
126#define PCI_IO_RANGE_TYPE_16 0x00
127#define PCI_IO_RANGE_TYPE_32 0x01
128#define PCI_IO_RANGE_MASK ~0x0f
129#define PCI_SEC_STATUS 0x1e /* Secondary status register, only bit 14 used */
130#define PCI_MEMORY_BASE 0x20 /* Memory range behind */
131#define PCI_MEMORY_LIMIT 0x22
132#define PCI_MEMORY_RANGE_TYPE_MASK 0x0f
133#define PCI_MEMORY_RANGE_MASK ~0x0f
134#define PCI_PREF_MEMORY_BASE 0x24 /* Prefetchable memory range behind */
135#define PCI_PREF_MEMORY_LIMIT 0x26
136#define PCI_PREF_RANGE_TYPE_MASK 0x0f
137#define PCI_PREF_RANGE_TYPE_32 0x00
138#define PCI_PREF_RANGE_TYPE_64 0x01
139#define PCI_PREF_RANGE_MASK ~0x0f
140#define PCI_PREF_BASE_UPPER32 0x28 /* Upper half of prefetchable memory range */
141#define PCI_PREF_LIMIT_UPPER32 0x2c
142#define PCI_IO_BASE_UPPER16 0x30 /* Upper half of I/O addresses */
143#define PCI_IO_LIMIT_UPPER16 0x32
144/* 0x34 same as for htype 0 */
145/* 0x35-0x3b is reserved */
146#define PCI_ROM_ADDRESS1 0x38 /* Same as PCI_ROM_ADDRESS, but for htype 1 */
147/* 0x3c-0x3d are same as for htype 0 */
148#define PCI_BRIDGE_CONTROL 0x3e
149#define PCI_BRIDGE_CTL_PARITY 0x01 /* Enable parity detection on secondary interface */
150#define PCI_BRIDGE_CTL_SERR 0x02 /* The same for SERR forwarding */
151#define PCI_BRIDGE_CTL_NO_ISA 0x04 /* Disable bridging of ISA ports */
152#define PCI_BRIDGE_CTL_VGA 0x08 /* Forward VGA addresses */
153#define PCI_BRIDGE_CTL_MASTER_ABORT 0x20 /* Report master aborts */
154#define PCI_BRIDGE_CTL_BUS_RESET 0x40 /* Secondary bus reset */
155#define PCI_BRIDGE_CTL_FAST_BACK 0x80 /* Fast Back2Back enabled on secondary interface */
156
157/* Header type 2 (CardBus bridges) */
158#define PCI_CB_CAPABILITY_LIST 0x14
159/* 0x15 reserved */
160#define PCI_CB_SEC_STATUS 0x16 /* Secondary status */
161#define PCI_CB_PRIMARY_BUS 0x18 /* PCI bus number */
162#define PCI_CB_CARD_BUS 0x19 /* CardBus bus number */
163#define PCI_CB_SUBORDINATE_BUS 0x1a /* Subordinate bus number */
164#define PCI_CB_LATENCY_TIMER 0x1b /* CardBus latency timer */
165#define PCI_CB_MEMORY_BASE_0 0x1c
166#define PCI_CB_MEMORY_LIMIT_0 0x20
167#define PCI_CB_MEMORY_BASE_1 0x24
168#define PCI_CB_MEMORY_LIMIT_1 0x28
169#define PCI_CB_IO_BASE_0 0x2c
170#define PCI_CB_IO_BASE_0_HI 0x2e
171#define PCI_CB_IO_LIMIT_0 0x30
172#define PCI_CB_IO_LIMIT_0_HI 0x32
173#define PCI_CB_IO_BASE_1 0x34
174#define PCI_CB_IO_BASE_1_HI 0x36
175#define PCI_CB_IO_LIMIT_1 0x38
176#define PCI_CB_IO_LIMIT_1_HI 0x3a
177#define PCI_CB_IO_RANGE_MASK ~0x03
178/* 0x3c-0x3d are same as for htype 0 */
179#define PCI_CB_BRIDGE_CONTROL 0x3e
180#define PCI_CB_BRIDGE_CTL_PARITY 0x01 /* Similar to standard bridge control register */
181#define PCI_CB_BRIDGE_CTL_SERR 0x02
182#define PCI_CB_BRIDGE_CTL_ISA 0x04
183#define PCI_CB_BRIDGE_CTL_VGA 0x08
184#define PCI_CB_BRIDGE_CTL_MASTER_ABORT 0x20
185#define PCI_CB_BRIDGE_CTL_CB_RESET 0x40 /* CardBus reset */
186#define PCI_CB_BRIDGE_CTL_16BIT_INT 0x80 /* Enable interrupt for 16-bit cards */
187#define PCI_CB_BRIDGE_CTL_PREFETCH_MEM0 0x100 /* Prefetch enable for both memory regions */
188#define PCI_CB_BRIDGE_CTL_PREFETCH_MEM1 0x200
189#define PCI_CB_BRIDGE_CTL_POST_WRITES 0x400
190#define PCI_CB_SUBSYSTEM_VENDOR_ID 0x40
191#define PCI_CB_SUBSYSTEM_ID 0x42
192#define PCI_CB_LEGACY_MODE_BASE 0x44 /* 16-bit PC Card legacy mode base address (ExCa) */
193/* 0x48-0x7f reserved */
194
195/* Capability lists */
196
197#define PCI_CAP_LIST_ID 0 /* Capability ID */
198#define PCI_CAP_ID_PM 0x01 /* Power Management */
199#define PCI_CAP_ID_AGP 0x02 /* Accelerated Graphics Port */
200#define PCI_CAP_ID_VPD 0x03 /* Vital Product Data */
201#define PCI_CAP_ID_SLOTID 0x04 /* Slot Identification */
202#define PCI_CAP_ID_MSI 0x05 /* Message Signalled Interrupts */
203#define PCI_CAP_ID_CHSWP 0x06 /* CompactPCI HotSwap */
Bin Meng16541e82018-08-03 01:14:51 -0700204#define PCI_CAP_ID_PCIX 0x07 /* PCI-X */
205#define PCI_CAP_ID_HT 0x08 /* HyperTransport */
206#define PCI_CAP_ID_VNDR 0x09 /* Vendor-Specific */
207#define PCI_CAP_ID_DBG 0x0A /* Debug port */
208#define PCI_CAP_ID_CCRC 0x0B /* CompactPCI Central Resource Control */
209#define PCI_CAP_ID_SHPC 0x0C /* PCI Standard Hot-Plug Controller */
210#define PCI_CAP_ID_SSVID 0x0D /* Bridge subsystem vendor/device ID */
211#define PCI_CAP_ID_AGP3 0x0E /* AGP Target PCI-PCI bridge */
212#define PCI_CAP_ID_SECDEV 0x0F /* Secure Device */
213#define PCI_CAP_ID_EXP 0x10 /* PCI Express */
214#define PCI_CAP_ID_MSIX 0x11 /* MSI-X */
215#define PCI_CAP_ID_SATA 0x12 /* SATA Data/Index Conf. */
216#define PCI_CAP_ID_AF 0x13 /* PCI Advanced Features */
217#define PCI_CAP_ID_EA 0x14 /* PCI Enhanced Allocation */
218#define PCI_CAP_ID_MAX PCI_CAP_ID_EA
wdenkc6097192002-11-03 00:24:07 +0000219#define PCI_CAP_LIST_NEXT 1 /* Next capability in the list */
220#define PCI_CAP_FLAGS 2 /* Capability defined flags (16 bits) */
221#define PCI_CAP_SIZEOF 4
222
223/* Power Management Registers */
224
225#define PCI_PM_CAP_VER_MASK 0x0007 /* Version */
226#define PCI_PM_CAP_PME_CLOCK 0x0008 /* PME clock required */
227#define PCI_PM_CAP_AUX_POWER 0x0010 /* Auxilliary power support */
228#define PCI_PM_CAP_DSI 0x0020 /* Device specific initialization */
229#define PCI_PM_CAP_D1 0x0200 /* D1 power state support */
230#define PCI_PM_CAP_D2 0x0400 /* D2 power state support */
231#define PCI_PM_CAP_PME 0x0800 /* PME pin supported */
232#define PCI_PM_CTRL 4 /* PM control and status register */
233#define PCI_PM_CTRL_STATE_MASK 0x0003 /* Current power state (D0 to D3) */
234#define PCI_PM_CTRL_PME_ENABLE 0x0100 /* PME pin enable */
235#define PCI_PM_CTRL_DATA_SEL_MASK 0x1e00 /* Data select (??) */
236#define PCI_PM_CTRL_DATA_SCALE_MASK 0x6000 /* Data scale (??) */
237#define PCI_PM_CTRL_PME_STATUS 0x8000 /* PME pin status */
238#define PCI_PM_PPB_EXTENSIONS 6 /* PPB support extensions (??) */
239#define PCI_PM_PPB_B2_B3 0x40 /* Stop clock when in D3hot (??) */
240#define PCI_PM_BPCC_ENABLE 0x80 /* Bus power/clock control enable (??) */
241#define PCI_PM_DATA_REGISTER 7 /* (??) */
242#define PCI_PM_SIZEOF 8
243
244/* AGP registers */
245
246#define PCI_AGP_VERSION 2 /* BCD version number */
247#define PCI_AGP_RFU 3 /* Rest of capability flags */
248#define PCI_AGP_STATUS 4 /* Status register */
249#define PCI_AGP_STATUS_RQ_MASK 0xff000000 /* Maximum number of requests - 1 */
250#define PCI_AGP_STATUS_SBA 0x0200 /* Sideband addressing supported */
251#define PCI_AGP_STATUS_64BIT 0x0020 /* 64-bit addressing supported */
252#define PCI_AGP_STATUS_FW 0x0010 /* FW transfers supported */
253#define PCI_AGP_STATUS_RATE4 0x0004 /* 4x transfer rate supported */
254#define PCI_AGP_STATUS_RATE2 0x0002 /* 2x transfer rate supported */
255#define PCI_AGP_STATUS_RATE1 0x0001 /* 1x transfer rate supported */
256#define PCI_AGP_COMMAND 8 /* Control register */
257#define PCI_AGP_COMMAND_RQ_MASK 0xff000000 /* Master: Maximum number of requests */
258#define PCI_AGP_COMMAND_SBA 0x0200 /* Sideband addressing enabled */
259#define PCI_AGP_COMMAND_AGP 0x0100 /* Allow processing of AGP transactions */
260#define PCI_AGP_COMMAND_64BIT 0x0020 /* Allow processing of 64-bit addresses */
261#define PCI_AGP_COMMAND_FW 0x0010 /* Force FW transfers */
262#define PCI_AGP_COMMAND_RATE4 0x0004 /* Use 4x rate */
263#define PCI_AGP_COMMAND_RATE2 0x0002 /* Use 4x rate */
264#define PCI_AGP_COMMAND_RATE1 0x0001 /* Use 4x rate */
265#define PCI_AGP_SIZEOF 12
266
Matthew McClintock3fc12c52006-06-28 10:44:49 -0500267/* PCI-X registers */
268
269#define PCI_X_CMD_DPERR_E 0x0001 /* Data Parity Error Recovery Enable */
270#define PCI_X_CMD_ERO 0x0002 /* Enable Relaxed Ordering */
271#define PCI_X_CMD_MAX_READ 0x0000 /* Max Memory Read Byte Count */
272#define PCI_X_CMD_MAX_SPLIT 0x0030 /* Max Outstanding Split Transactions */
273#define PCI_X_CMD_VERSION(x) (((x) >> 12) & 3) /* Version */
274
275
wdenkc6097192002-11-03 00:24:07 +0000276/* Slot Identification */
277
278#define PCI_SID_ESR 2 /* Expansion Slot Register */
279#define PCI_SID_ESR_NSLOTS 0x1f /* Number of expansion slots available */
280#define PCI_SID_ESR_FIC 0x20 /* First In Chassis Flag */
281#define PCI_SID_CHASSIS_NR 3 /* Chassis Number */
282
283/* Message Signalled Interrupts registers */
284
285#define PCI_MSI_FLAGS 2 /* Various flags */
286#define PCI_MSI_FLAGS_64BIT 0x80 /* 64-bit addresses allowed */
287#define PCI_MSI_FLAGS_QSIZE 0x70 /* Message queue size configured */
288#define PCI_MSI_FLAGS_QMASK 0x0e /* Maximum queue size available */
289#define PCI_MSI_FLAGS_ENABLE 0x01 /* MSI feature enabled */
Ramon Fried8a8e86f2019-04-06 05:12:01 +0300290#define PCI_MSI_FLAGS_MASKBIT 0x0100 /* Per-vector masking capable */
wdenkc6097192002-11-03 00:24:07 +0000291#define PCI_MSI_RFU 3 /* Rest of capability flags */
292#define PCI_MSI_ADDRESS_LO 4 /* Lower 32 bits */
293#define PCI_MSI_ADDRESS_HI 8 /* Upper 32 bits (if PCI_MSI_FLAGS_64BIT set) */
294#define PCI_MSI_DATA_32 8 /* 16 bits of data for 32-bit devices */
295#define PCI_MSI_DATA_64 12 /* 16 bits of data for 64-bit devices */
296
297#define PCI_MAX_PCI_DEVICES 32
298#define PCI_MAX_PCI_FUNCTIONS 8
299
Zhao Qiang5d39f742013-10-12 13:46:33 +0800300#define PCI_FIND_CAP_TTL 0x48
301#define CAP_START_POS 0x40
302
Minghuan Lianc5bc6aa2015-07-10 11:35:08 +0800303/* Extended Capabilities (PCI-X 2.0 and Express) */
304#define PCI_EXT_CAP_ID(header) (header & 0x0000ffff)
305#define PCI_EXT_CAP_VER(header) ((header >> 16) & 0xf)
306#define PCI_EXT_CAP_NEXT(header) ((header >> 20) & 0xffc)
307
308#define PCI_EXT_CAP_ID_ERR 0x01 /* Advanced Error Reporting */
309#define PCI_EXT_CAP_ID_VC 0x02 /* Virtual Channel Capability */
310#define PCI_EXT_CAP_ID_DSN 0x03 /* Device Serial Number */
311#define PCI_EXT_CAP_ID_PWR 0x04 /* Power Budgeting */
312#define PCI_EXT_CAP_ID_RCLD 0x05 /* Root Complex Link Declaration */
313#define PCI_EXT_CAP_ID_RCILC 0x06 /* Root Complex Internal Link Control */
314#define PCI_EXT_CAP_ID_RCEC 0x07 /* Root Complex Event Collector */
315#define PCI_EXT_CAP_ID_MFVC 0x08 /* Multi-Function VC Capability */
316#define PCI_EXT_CAP_ID_VC9 0x09 /* same as _VC */
317#define PCI_EXT_CAP_ID_RCRB 0x0A /* Root Complex RB? */
318#define PCI_EXT_CAP_ID_VNDR 0x0B /* Vendor-Specific */
319#define PCI_EXT_CAP_ID_CAC 0x0C /* Config Access - obsolete */
320#define PCI_EXT_CAP_ID_ACS 0x0D /* Access Control Services */
321#define PCI_EXT_CAP_ID_ARI 0x0E /* Alternate Routing ID */
322#define PCI_EXT_CAP_ID_ATS 0x0F /* Address Translation Services */
323#define PCI_EXT_CAP_ID_SRIOV 0x10 /* Single Root I/O Virtualization */
324#define PCI_EXT_CAP_ID_MRIOV 0x11 /* Multi Root I/O Virtualization */
325#define PCI_EXT_CAP_ID_MCAST 0x12 /* Multicast */
326#define PCI_EXT_CAP_ID_PRI 0x13 /* Page Request Interface */
327#define PCI_EXT_CAP_ID_AMD_XXX 0x14 /* Reserved for AMD */
328#define PCI_EXT_CAP_ID_REBAR 0x15 /* Resizable BAR */
329#define PCI_EXT_CAP_ID_DPA 0x16 /* Dynamic Power Allocation */
330#define PCI_EXT_CAP_ID_TPH 0x17 /* TPH Requester */
331#define PCI_EXT_CAP_ID_LTR 0x18 /* Latency Tolerance Reporting */
332#define PCI_EXT_CAP_ID_SECPCI 0x19 /* Secondary PCIe Capability */
333#define PCI_EXT_CAP_ID_PMUX 0x1A /* Protocol Multiplexing */
334#define PCI_EXT_CAP_ID_PASID 0x1B /* Process Address Space ID */
Bin Meng16541e82018-08-03 01:14:51 -0700335#define PCI_EXT_CAP_ID_DPC 0x1D /* Downstream Port Containment */
336#define PCI_EXT_CAP_ID_L1SS 0x1E /* L1 PM Substates */
337#define PCI_EXT_CAP_ID_PTM 0x1F /* Precision Time Measurement */
338#define PCI_EXT_CAP_ID_MAX PCI_EXT_CAP_ID_PTM
Minghuan Lianc5bc6aa2015-07-10 11:35:08 +0800339
Alex Marginean1c934a62019-06-07 11:24:23 +0300340/* Enhanced Allocation Registers */
341#define PCI_EA_NUM_ENT 2 /* Number of Capability Entries */
342#define PCI_EA_NUM_ENT_MASK 0x3f /* Num Entries Mask */
343#define PCI_EA_FIRST_ENT 4 /* First EA Entry in List */
344#define PCI_EA_ES 0x00000007 /* Entry Size */
345#define PCI_EA_BEI 0x000000f0 /* BAR Equivalent Indicator */
Suneel Garapati5858ba82019-10-19 16:34:16 -0700346/* 9-14 map to VF BARs 0-5 respectively */
347#define PCI_EA_BEI_VF_BAR0 9
348#define PCI_EA_BEI_VF_BAR5 14
Alex Marginean1c934a62019-06-07 11:24:23 +0300349/* Base, MaxOffset registers */
350/* bit 0 is reserved */
351#define PCI_EA_IS_64 0x00000002 /* 64-bit field flag */
352#define PCI_EA_FIELD_MASK 0xfffffffc /* For Base & Max Offset */
353
Alex Marginean09467d32019-06-07 11:24:25 +0300354/* PCI Express capabilities */
Sylwester Nawrocki2d0ee242020-05-25 13:39:53 +0200355#define PCI_EXP_FLAGS 2 /* Capabilities register */
Maciej W. Rozycki93008ab2021-11-20 23:03:30 +0000356#define PCI_EXP_FLAGS_VERS 0x000f /* Capability Version */
Sylwester Nawrocki2d0ee242020-05-25 13:39:53 +0200357#define PCI_EXP_FLAGS_TYPE 0x00f0 /* Device/Port type */
Maciej W. Rozycki93008ab2021-11-20 23:03:30 +0000358#define PCI_EXP_TYPE_ROOT_PORT 0x4 /* Root Port */
359#define PCI_EXP_TYPE_DOWNSTREAM 0x6 /* Downstream Port */
360#define PCI_EXP_TYPE_PCIE_BRIDGE 0x8 /* PCI/PCI-X to PCIe Bridge */
Alex Marginean09467d32019-06-07 11:24:25 +0300361#define PCI_EXP_DEVCAP 4 /* Device capabilities */
Sylwester Nawrocki2d0ee242020-05-25 13:39:53 +0200362#define PCI_EXP_DEVCAP_FLR 0x10000000 /* Function Level Reset */
Stephen Carlson3d876c42023-03-10 11:07:13 -0800363#define PCI_EXP_DEVCAP_PAYLOAD 0x0007 /* Max payload size supported */
364#define PCI_EXP_DEVCAP_PAYLOAD_128B 0x0000 /* 128 Bytes */
365#define PCI_EXP_DEVCAP_PAYLOAD_256B 0x0001 /* 256 Bytes */
366#define PCI_EXP_DEVCAP_PAYLOAD_512B 0x0002 /* 512 Bytes */
367#define PCI_EXP_DEVCAP_PAYLOAD_1024B 0x0003 /* 1024 Bytes */
368#define PCI_EXP_DEVCAP_PAYLOAD_2048B 0x0004 /* 2048 Bytes */
369#define PCI_EXP_DEVCAP_PAYLOAD_4096B 0x0005 /* 4096 Bytes */
Alex Marginean09467d32019-06-07 11:24:25 +0300370#define PCI_EXP_DEVCTL 8 /* Device Control */
Pali Rohár810cde32022-02-10 14:53:42 +0100371#define PCI_EXP_DEVCTL_PAYLOAD 0x00e0 /* Max_Payload_Size */
372#define PCI_EXP_DEVCTL_PAYLOAD_128B 0x0000 /* 128 Bytes */
373#define PCI_EXP_DEVCTL_PAYLOAD_256B 0x0020 /* 256 Bytes */
374#define PCI_EXP_DEVCTL_PAYLOAD_512B 0x0040 /* 512 Bytes */
375#define PCI_EXP_DEVCTL_PAYLOAD_1024B 0x0060 /* 1024 Bytes */
376#define PCI_EXP_DEVCTL_PAYLOAD_2048B 0x0080 /* 2048 Bytes */
377#define PCI_EXP_DEVCTL_PAYLOAD_4096B 0x00a0 /* 4096 Bytes */
378#define PCI_EXP_DEVCTL_RELAX_EN 0x0010 /* Enable relaxed ordering */
379#define PCI_EXP_DEVCTL_NOSNOOP_EN 0x0800 /* Enable No Snoop */
380#define PCI_EXP_DEVCTL_READRQ 0x7000 /* Max_Read_Request_Size */
381#define PCI_EXP_DEVCTL_READRQ_128B 0x0000 /* 128 Bytes */
382#define PCI_EXP_DEVCTL_READRQ_256B 0x1000 /* 256 Bytes */
383#define PCI_EXP_DEVCTL_READRQ_512B 0x2000 /* 512 Bytes */
384#define PCI_EXP_DEVCTL_READRQ_1024B 0x3000 /* 1024 Bytes */
385#define PCI_EXP_DEVCTL_READRQ_2048B 0x4000 /* 2048 Bytes */
386#define PCI_EXP_DEVCTL_READRQ_4096B 0x5000 /* 4096 Bytes */
Sylwester Nawrocki2d0ee242020-05-25 13:39:53 +0200387#define PCI_EXP_DEVCTL_BCR_FLR 0x8000 /* Bridge Configuration Retry / FLR */
388#define PCI_EXP_LNKCAP 12 /* Link Capabilities */
Sylwester Nawrockidf1cb962020-05-25 13:39:57 +0200389#define PCI_EXP_LNKCAP_SLS 0x0000000f /* Supported Link Speeds */
Maciej W. Rozycki93008ab2021-11-20 23:03:30 +0000390#define PCI_EXP_LNKCAP_SLS_2_5GB 0x00000001 /* LNKCAP2 SLS Vector bit 0 */
391#define PCI_EXP_LNKCAP_SLS_5_0GB 0x00000002 /* LNKCAP2 SLS Vector bit 1 */
392#define PCI_EXP_LNKCAP_SLS_8_0GB 0x00000003 /* LNKCAP2 SLS Vector bit 2 */
Sylwester Nawrockidf1cb962020-05-25 13:39:57 +0200393#define PCI_EXP_LNKCAP_MLW 0x000003f0 /* Maximum Link Width */
Sylwester Nawrocki2d0ee242020-05-25 13:39:53 +0200394#define PCI_EXP_LNKCAP_DLLLARC 0x00100000 /* Data Link Layer Link Active Reporting Capable */
Maciej W. Rozycki93008ab2021-11-20 23:03:30 +0000395#define PCI_EXP_LNKCTL 16 /* Link Control */
396#define PCI_EXP_LNKCTL_RL 0x0020 /* Retrain Link */
Sylwester Nawrocki2d0ee242020-05-25 13:39:53 +0200397#define PCI_EXP_LNKSTA 18 /* Link Status */
Sylwester Nawrockidf1cb962020-05-25 13:39:57 +0200398#define PCI_EXP_LNKSTA_CLS 0x000f /* Current Link Speed */
399#define PCI_EXP_LNKSTA_CLS_2_5GB 0x0001 /* Current Link Speed 2.5GT/s */
400#define PCI_EXP_LNKSTA_CLS_5_0GB 0x0002 /* Current Link Speed 5.0GT/s */
401#define PCI_EXP_LNKSTA_CLS_8_0GB 0x0003 /* Current Link Speed 8.0GT/s */
402#define PCI_EXP_LNKSTA_NLW 0x03f0 /* Negotiated Link Width */
403#define PCI_EXP_LNKSTA_NLW_SHIFT 4 /* start of NLW mask in link status */
Maciej W. Rozycki93008ab2021-11-20 23:03:30 +0000404#define PCI_EXP_LNKSTA_LT 0x0800 /* Link Training */
Sylwester Nawrocki2d0ee242020-05-25 13:39:53 +0200405#define PCI_EXP_LNKSTA_DLLLA 0x2000 /* Data Link Layer Link Active */
Maciej W. Rozycki93008ab2021-11-20 23:03:30 +0000406#define PCI_EXP_LNKSTA_LBMS 0x4000 /* Link Bandwidth Management Status */
Sylwester Nawrocki2d0ee242020-05-25 13:39:53 +0200407#define PCI_EXP_SLTCAP 20 /* Slot Capabilities */
408#define PCI_EXP_SLTCAP_PSN 0xfff80000 /* Physical Slot Number */
Pali Rohár238fbab2021-09-26 00:54:44 +0200409#define PCI_EXP_RTCTL 28 /* Root Control */
410#define PCI_EXP_RTCTL_CRSSVE 0x0010 /* CRS Software Visibility Enable */
411#define PCI_EXP_RTCAP 30 /* Root Capabilities */
412#define PCI_EXP_RTCAP_CRSVIS 0x0001 /* CRS Software Visibility capability */
Laurentiu Tudor1333e902020-09-10 12:42:18 +0300413#define PCI_EXP_DEVCAP2 36 /* Device Capabilities 2 */
414#define PCI_EXP_DEVCAP2_ARI 0x00000020 /* ARI Forwarding Supported */
415#define PCI_EXP_DEVCTL2 40 /* Device Control 2 */
416#define PCI_EXP_DEVCTL2_ARI 0x0020 /* Alternative Routing-ID */
Maciej W. Rozycki93008ab2021-11-20 23:03:30 +0000417#define PCI_EXP_LNKCAP2 44 /* Link Capability 2 */
418#define PCI_EXP_LNKCAP2_SLS 0x000000fe /* Supported Link Speeds Vector */
Sylwester Nawrockidf1cb962020-05-25 13:39:57 +0200419#define PCI_EXP_LNKCTL2 48 /* Link Control 2 */
Maciej W. Rozycki93008ab2021-11-20 23:03:30 +0000420#define PCI_EXP_LNKCTL2_TLS 0x000f /* Target Link Speed */
421#define PCI_EXP_LNKCTL2_TLS_2_5GT 0x0001 /* Target Link Speed 2.5GT/s */
422#define PCI_EXP_LNKCTL2_TLS_5_0GT 0x0002 /* Target Link Speed 5.0GT/s */
423#define PCI_EXP_LNKCTL2_TLS_8_0GT 0x0003 /* Target Link Speed 8.0GT/s */
424
Pali Rohár810cde32022-02-10 14:53:42 +0100425/* Advanced Error Reporting */
426#define PCI_ERR_CAP 24 /* Advanced Error Capabilities */
427#define PCI_ERR_CAP_FEP(x) ((x) & 31) /* First Error Pointer */
428#define PCI_ERR_CAP_ECRC_GENC 0x00000020 /* ECRC Generation Capable */
429#define PCI_ERR_CAP_ECRC_GENE 0x00000040 /* ECRC Generation Enable */
430#define PCI_ERR_CAP_ECRC_CHKC 0x00000080 /* ECRC Check Capable */
431#define PCI_ERR_CAP_ECRC_CHKE 0x00000100 /* ECRC Check Enable */
432
Suneel Garapati13822f72019-10-19 16:07:20 -0700433/* Single Root I/O Virtualization Registers */
434#define PCI_SRIOV_CAP 0x04 /* SR-IOV Capabilities */
435#define PCI_SRIOV_CTRL 0x08 /* SR-IOV Control */
436#define PCI_SRIOV_CTRL_VFE 0x01 /* VF Enable */
437#define PCI_SRIOV_CTRL_MSE 0x08 /* VF Memory Space Enable */
Laurentiu Tudor1333e902020-09-10 12:42:18 +0300438#define PCI_SRIOV_CTRL_ARI 0x10 /* ARI Capable Hierarchy */
Suneel Garapati13822f72019-10-19 16:07:20 -0700439#define PCI_SRIOV_INITIAL_VF 0x0c /* Initial VFs */
440#define PCI_SRIOV_TOTAL_VF 0x0e /* Total VFs */
441#define PCI_SRIOV_NUM_VF 0x10 /* Number of VFs */
442#define PCI_SRIOV_VF_OFFSET 0x14 /* First VF Offset */
443#define PCI_SRIOV_VF_STRIDE 0x16 /* Following VF Stride */
444#define PCI_SRIOV_VF_DID 0x1a /* VF Device ID */
Alex Marginean09467d32019-06-07 11:24:25 +0300445
wdenkc6097192002-11-03 00:24:07 +0000446/* Include the ID list */
447
448#include <pci_ids.h>
449
Pali Rohár23769352021-11-03 01:01:05 +0100450/*
Pali Rohárcd5d0b32021-11-26 11:42:41 +0100451 * Config Address for PCI Configuration Mechanism #1
452 *
453 * See PCI Local Bus Specification, Revision 3.0,
454 * Section 3.2.2.3.2, Figure 3-2, p. 50.
455 */
456
457#define PCI_CONF1_BUS_SHIFT 16 /* Bus number */
458#define PCI_CONF1_DEV_SHIFT 11 /* Device number */
459#define PCI_CONF1_FUNC_SHIFT 8 /* Function number */
460
461#define PCI_CONF1_BUS_MASK 0xff
462#define PCI_CONF1_DEV_MASK 0x1f
463#define PCI_CONF1_FUNC_MASK 0x7
464#define PCI_CONF1_REG_MASK 0xfc /* Limit aligned offset to a maximum of 256B */
465
466#define PCI_CONF1_ENABLE BIT(31)
467#define PCI_CONF1_BUS(x) (((x) & PCI_CONF1_BUS_MASK) << PCI_CONF1_BUS_SHIFT)
468#define PCI_CONF1_DEV(x) (((x) & PCI_CONF1_DEV_MASK) << PCI_CONF1_DEV_SHIFT)
469#define PCI_CONF1_FUNC(x) (((x) & PCI_CONF1_FUNC_MASK) << PCI_CONF1_FUNC_SHIFT)
470#define PCI_CONF1_REG(x) ((x) & PCI_CONF1_REG_MASK)
471
472#define PCI_CONF1_ADDRESS(bus, dev, func, reg) \
473 (PCI_CONF1_ENABLE | \
474 PCI_CONF1_BUS(bus) | \
475 PCI_CONF1_DEV(dev) | \
476 PCI_CONF1_FUNC(func) | \
477 PCI_CONF1_REG(reg))
478
479/*
480 * Extension of PCI Config Address for accessing extended PCIe registers
481 *
482 * No standardized specification, but used on lot of non-ECAM-compliant ARM SoCs
483 * or on AMD Barcelona and new CPUs. Reserved bits [27:24] of PCI Config Address
484 * are used for specifying additional 4 high bits of PCI Express register.
485 */
486
487#define PCI_CONF1_EXT_REG_SHIFT 16
488#define PCI_CONF1_EXT_REG_MASK 0xf00
489#define PCI_CONF1_EXT_REG(x) (((x) & PCI_CONF1_EXT_REG_MASK) << PCI_CONF1_EXT_REG_SHIFT)
490
491#define PCI_CONF1_EXT_ADDRESS(bus, dev, func, reg) \
492 (PCI_CONF1_ADDRESS(bus, dev, func, reg) | \
493 PCI_CONF1_EXT_REG(reg))
494
495/*
Pali Rohár23769352021-11-03 01:01:05 +0100496 * Enhanced Configuration Access Mechanism (ECAM)
497 *
498 * See PCI Express Base Specification, Revision 5.0, Version 1.0,
499 * Section 7.2.2, Table 7-1, p. 677.
500 */
501#define PCIE_ECAM_BUS_SHIFT 20 /* Bus number */
502#define PCIE_ECAM_DEV_SHIFT 15 /* Device number */
503#define PCIE_ECAM_FUNC_SHIFT 12 /* Function number */
504
505#define PCIE_ECAM_BUS_MASK 0xff
506#define PCIE_ECAM_DEV_MASK 0x1f
507#define PCIE_ECAM_FUNC_MASK 0x7
508#define PCIE_ECAM_REG_MASK 0xfff /* Limit offset to a maximum of 4K */
509
510#define PCIE_ECAM_BUS(x) (((x) & PCIE_ECAM_BUS_MASK) << PCIE_ECAM_BUS_SHIFT)
511#define PCIE_ECAM_DEV(x) (((x) & PCIE_ECAM_DEV_MASK) << PCIE_ECAM_DEV_SHIFT)
512#define PCIE_ECAM_FUNC(x) (((x) & PCIE_ECAM_FUNC_MASK) << PCIE_ECAM_FUNC_SHIFT)
513#define PCIE_ECAM_REG(x) ((x) & PCIE_ECAM_REG_MASK)
514
515#define PCIE_ECAM_OFFSET(bus, dev, func, where) \
516 (PCIE_ECAM_BUS(bus) | \
517 PCIE_ECAM_DEV(dev) | \
518 PCIE_ECAM_FUNC(func) | \
519 PCIE_ECAM_REG(where))
520
Paul Burton162116e2013-11-08 11:18:47 +0000521#ifndef __ASSEMBLY__
522
Tom Rinidec7ea02024-05-20 13:35:03 -0600523#include <linux/types.h>
Simon Glass0b591e02019-12-06 21:41:38 -0700524#include <dm/pci.h>
525
Kumar Galaad714f52008-10-21 08:36:08 -0500526#ifdef CONFIG_SYS_PCI_64BIT
527typedef u64 pci_addr_t;
528typedef u64 pci_size_t;
529#else
Heinrich Schuchardt149ccf32020-02-05 21:59:12 +0100530typedef unsigned long pci_addr_t;
531typedef unsigned long pci_size_t;
Kumar Galaad714f52008-10-21 08:36:08 -0500532#endif
533
wdenkc6097192002-11-03 00:24:07 +0000534struct pci_region {
Kumar Galaad714f52008-10-21 08:36:08 -0500535 pci_addr_t bus_start; /* Start on the bus */
536 phys_addr_t phys_start; /* Start in physical address space */
537 pci_size_t size; /* Size */
538 unsigned long flags; /* Resource flags */
wdenkc6097192002-11-03 00:24:07 +0000539
Kumar Galaad714f52008-10-21 08:36:08 -0500540 pci_addr_t bus_lower;
wdenkc6097192002-11-03 00:24:07 +0000541};
542
543#define PCI_REGION_MEM 0x00000000 /* PCI memory space */
544#define PCI_REGION_IO 0x00000001 /* PCI IO space */
545#define PCI_REGION_TYPE 0x00000001
Kumar Galae5ce4202006-01-11 13:24:15 -0600546#define PCI_REGION_PREFETCH 0x00000008 /* prefetchable PCI memory */
wdenkc6097192002-11-03 00:24:07 +0000547
Kumar Galaefa1f1d2009-02-06 09:49:31 -0600548#define PCI_REGION_SYS_MEMORY 0x00000100 /* System memory */
wdenkc6097192002-11-03 00:24:07 +0000549#define PCI_REGION_RO 0x00000200 /* Read-only memory */
550
Simon Glass64f11d02013-06-11 11:14:33 -0700551static inline void pci_set_region(struct pci_region *reg,
Kumar Galaad714f52008-10-21 08:36:08 -0500552 pci_addr_t bus_start,
Becky Bruce0a628572008-05-07 13:24:57 -0500553 phys_addr_t phys_start,
Kumar Galaad714f52008-10-21 08:36:08 -0500554 pci_size_t size,
wdenkc6097192002-11-03 00:24:07 +0000555 unsigned long flags) {
556 reg->bus_start = bus_start;
557 reg->phys_start = phys_start;
558 reg->size = size;
559 reg->flags = flags;
560}
561
562typedef int pci_dev_t;
563
Simon Glassb94dc892015-03-05 12:25:25 -0700564#define PCI_BUS(d) (((d) >> 16) & 0xff)
Stefan Roese97a8bbf2019-02-11 08:43:25 +0100565
566/*
567 * Please note the difference in DEVFN usage in U-Boot vs Linux. U-Boot
568 * uses DEVFN in bits 15-8 but Linux instead expects DEVFN in bits 7-0.
569 * Please see the Linux header include/uapi/linux/pci.h for more details.
570 * This is relevant for the following macros:
571 * PCI_DEV, PCI_FUNC, PCI_DEVFN
572 * The U-Boot macro PCI_DEV is equivalent to the Linux PCI_SLOT version with
Simon Glass951be472020-05-10 10:26:54 -0600573 * the remark from above (input is in bits 15-8 instead of 7-0.
Stefan Roese97a8bbf2019-02-11 08:43:25 +0100574 */
Simon Glassb94dc892015-03-05 12:25:25 -0700575#define PCI_DEV(d) (((d) >> 11) & 0x1f)
576#define PCI_FUNC(d) (((d) >> 8) & 0x7)
577#define PCI_DEVFN(d, f) ((d) << 11 | (f) << 8)
Stefan Roese97a8bbf2019-02-11 08:43:25 +0100578
Simon Glassb94dc892015-03-05 12:25:25 -0700579#define PCI_MASK_BUS(bdf) ((bdf) & 0xffff)
580#define PCI_ADD_BUS(bus, devfn) (((bus) << 16) | (devfn))
581#define PCI_BDF(b, d, f) ((b) << 16 | PCI_DEVFN(d, f))
Simon Glassb94dc892015-03-05 12:25:25 -0700582#define PCI_ANY_ID (~0)
wdenkc6097192002-11-03 00:24:07 +0000583
Simon Glassbaefa092020-04-08 08:32:59 -0600584/* Convert from Linux format to U-Boot format */
585#define PCI_TO_BDF(val) ((val) << 8)
586
wdenkc6097192002-11-03 00:24:07 +0000587struct pci_device_id {
Simon Glass318d71c2015-07-06 16:47:44 -0600588 unsigned int vendor, device; /* Vendor and device ID or PCI_ANY_ID */
589 unsigned int subvendor, subdevice; /* Subsystem ID's or PCI_ANY_ID */
590 unsigned int class, class_mask; /* (class,subclass,prog-if) triplet */
591 unsigned long driver_data; /* Data private to the driver */
wdenkc6097192002-11-03 00:24:07 +0000592};
593
594struct pci_controller;
595
596struct pci_config_table {
597 unsigned int vendor, device; /* Vendor and device ID or PCI_ANY_ID */
598 unsigned int class; /* Class ID, or PCI_ANY_ID */
599 unsigned int bus; /* Bus number, or PCI_ANY_ID */
600 unsigned int dev; /* Device number, or PCI_ANY_ID */
601 unsigned int func; /* Function number, or PCI_ANY_ID */
602
603 void (*config_device)(struct pci_controller* hose, pci_dev_t dev,
604 struct pci_config_table *);
605 unsigned long priv[3];
606};
607
Wolfgang Denk3d7f5e02006-03-12 16:54:11 +0100608extern void pci_cfgfunc_do_nothing(struct pci_controller* hose, pci_dev_t dev,
609 struct pci_config_table *);
wdenkc6097192002-11-03 00:24:07 +0000610extern void pci_cfgfunc_config_device(struct pci_controller* hose, pci_dev_t dev,
611 struct pci_config_table *);
612
Anton Vorontsov1a8206c2009-01-08 04:26:12 +0300613#define INDIRECT_TYPE_NO_PCIE_LINK 1
614
Simon Glass68e35a72019-12-06 21:41:37 -0700615/**
wdenkc6097192002-11-03 00:24:07 +0000616 * Structure of a PCI controller (host bridge)
Simon Glassc19e4422015-11-26 19:51:21 -0700617 *
618 * With driver model this is dev_get_uclass_priv(bus)
Simon Glass68e35a72019-12-06 21:41:37 -0700619 *
620 * @skip_auto_config_until_reloc: true to avoid auto-config until U-Boot has
621 * relocated. Normally if PCI is used before relocation, this happens
622 * before relocation also. Some platforms set up static configuration in
623 * TPL/SPL to reduce code size and boot time, since these phases only know
624 * about a small subset of PCI devices. This is normally false.
wdenkc6097192002-11-03 00:24:07 +0000625 */
626struct pci_controller {
Simon Glassb94dc892015-03-05 12:25:25 -0700627 struct udevice *bus;
628 struct udevice *ctlr;
Simon Glass68e35a72019-12-06 21:41:37 -0700629 bool skip_auto_config_until_reloc;
wdenkc6097192002-11-03 00:24:07 +0000630
631 int first_busno;
632 int last_busno;
633
634 volatile unsigned int *cfg_addr;
635 volatile unsigned char *cfg_data;
636
Anton Vorontsov1a8206c2009-01-08 04:26:12 +0300637 int indirect_type;
638
Simon Glassd82fbe92015-06-07 08:50:40 -0600639 /*
640 * TODO(sjg@chromium.org): With driver model we use struct
641 * pci_controller for both the controller and any bridge devices
642 * attached to it. But there is only one region list and it is in the
643 * top-level controller.
644 *
645 * This could be changed so that struct pci_controller is only used
646 * for PCI controllers and a separate UCLASS (or perhaps
647 * UCLASS_PCI_GENERIC) is used for bridges.
648 */
Stefan Roese950864f2020-07-23 16:34:10 +0200649 struct pci_region *regions;
wdenkc6097192002-11-03 00:24:07 +0000650 int region_count;
651
652 struct pci_config_table *config_table;
653
654 void (*fixup_irq)(struct pci_controller *, pci_dev_t);
wdenkc6097192002-11-03 00:24:07 +0000655
656 /* Used by auto config */
Kumar Galae5ce4202006-01-11 13:24:15 -0600657 struct pci_region *pci_mem, *pci_io, *pci_prefetch;
wdenkc6097192002-11-03 00:24:07 +0000658};
659
Simon Glass3dba83b2021-08-01 18:54:16 -0600660#if defined(CONFIG_DM_PCI_COMPAT)
Becky Bruce0a628572008-05-07 13:24:57 -0500661extern phys_addr_t pci_hose_bus_to_phys(struct pci_controller* hose,
Kumar Galaad714f52008-10-21 08:36:08 -0500662 pci_addr_t addr, unsigned long flags);
663extern pci_addr_t pci_hose_phys_to_bus(struct pci_controller* hose,
664 phys_addr_t addr, unsigned long flags);
wdenkc6097192002-11-03 00:24:07 +0000665
666#define pci_phys_to_bus(dev, addr, flags) \
667 pci_hose_phys_to_bus(pci_bus_to_hose(PCI_BUS(dev)), (addr), (flags))
668#define pci_bus_to_phys(dev, addr, flags) \
669 pci_hose_bus_to_phys(pci_bus_to_hose(PCI_BUS(dev)), (addr), (flags))
670
Becky Bruce0709bfc2009-02-03 18:10:50 -0600671#define pci_virt_to_bus(dev, addr, flags) \
672 pci_hose_phys_to_bus(pci_bus_to_hose(PCI_BUS(dev)), \
673 (virt_to_phys(addr)), (flags))
674#define pci_bus_to_virt(dev, addr, flags, len, map_flags) \
675 map_physmem(pci_hose_bus_to_phys(pci_bus_to_hose(PCI_BUS(dev)), \
676 (addr), (flags)), \
677 (len), (map_flags))
678
679#define pci_phys_to_mem(dev, addr) \
680 pci_phys_to_bus((dev), (addr), PCI_REGION_MEM)
681#define pci_mem_to_phys(dev, addr) \
682 pci_bus_to_phys((dev), (addr), PCI_REGION_MEM)
683#define pci_phys_to_io(dev, addr) pci_phys_to_bus((dev), (addr), PCI_REGION_IO)
684#define pci_io_to_phys(dev, addr) pci_bus_to_phys((dev), (addr), PCI_REGION_IO)
685
686#define pci_virt_to_mem(dev, addr) \
687 pci_virt_to_bus((dev), (addr), PCI_REGION_MEM)
688#define pci_mem_to_virt(dev, addr, len, map_flags) \
689 pci_bus_to_virt((dev), (addr), PCI_REGION_MEM, (len), (map_flags))
690#define pci_virt_to_io(dev, addr) \
691 pci_virt_to_bus((dev), (addr), PCI_REGION_IO)
692#define pci_io_to_virt(dev, addr, len, map_flags) \
693 pci_bus_to_virt((dev), (addr), PCI_REGION_IO, (len), (map_flags))
wdenkc6097192002-11-03 00:24:07 +0000694
Simon Glassf2b223f2015-08-22 15:58:55 -0600695/* For driver model these are defined in macros in pci_compat.c */
wdenkc6097192002-11-03 00:24:07 +0000696extern int pci_hose_read_config_byte(struct pci_controller *hose,
697 pci_dev_t dev, int where, u8 *val);
698extern int pci_hose_read_config_word(struct pci_controller *hose,
699 pci_dev_t dev, int where, u16 *val);
700extern int pci_hose_read_config_dword(struct pci_controller *hose,
701 pci_dev_t dev, int where, u32 *val);
702extern int pci_hose_write_config_byte(struct pci_controller *hose,
703 pci_dev_t dev, int where, u8 val);
704extern int pci_hose_write_config_word(struct pci_controller *hose,
705 pci_dev_t dev, int where, u16 val);
706extern int pci_hose_write_config_dword(struct pci_controller *hose,
707 pci_dev_t dev, int where, u32 val);
Simon Glasseca7b0d2015-11-26 19:51:30 -0700708#endif
wdenkc6097192002-11-03 00:24:07 +0000709
Simon Glasseca7b0d2015-11-26 19:51:30 -0700710void pciauto_region_init(struct pci_region *res);
711void pciauto_region_align(struct pci_region *res, pci_size_t size);
712void pciauto_config_init(struct pci_controller *hose);
Tuomas Tynkkynenffa21e92018-05-14 23:50:05 +0300713
714/**
715 * pciauto_region_allocate() - Allocate resources from a PCI resource region
716 *
717 * Allocates @size bytes from the PCI resource @res. If @supports_64bit is
718 * false, the result will be guaranteed to fit in 32 bits.
719 *
720 * @res: PCI region to allocate from
721 * @size: Amount of bytes to allocate
722 * @bar: Returns the PCI bus address of the allocated resource
723 * @supports_64bit: Whether to allow allocations above the 32-bit boundary
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100724 * Return: 0 if successful, -1 on failure
Tuomas Tynkkynenffa21e92018-05-14 23:50:05 +0300725 */
Simon Glasseca7b0d2015-11-26 19:51:30 -0700726int pciauto_region_allocate(struct pci_region *res, pci_size_t size,
Tuomas Tynkkynenf20b7182018-05-14 19:38:13 +0300727 pci_addr_t *bar, bool supports_64bit);
Vladimir Oltean6942c882021-09-17 15:11:20 +0300728int pci_skip_dev(struct pci_controller *hose, pci_dev_t dev);
Simon Glasseca7b0d2015-11-26 19:51:30 -0700729
Simon Glass3dba83b2021-08-01 18:54:16 -0600730#if defined(CONFIG_DM_PCI_COMPAT)
wdenkc6097192002-11-03 00:24:07 +0000731extern int pci_hose_read_config_byte_via_dword(struct pci_controller *hose,
732 pci_dev_t dev, int where, u8 *val);
733extern int pci_hose_read_config_word_via_dword(struct pci_controller *hose,
734 pci_dev_t dev, int where, u16 *val);
735extern int pci_hose_write_config_byte_via_dword(struct pci_controller *hose,
736 pci_dev_t dev, int where, u8 val);
737extern int pci_hose_write_config_word_via_dword(struct pci_controller *hose,
738 pci_dev_t dev, int where, u16 val);
739
Becky Bruce0709bfc2009-02-03 18:10:50 -0600740extern void *pci_map_bar(pci_dev_t pdev, int bar, int flags);
wdenkc6097192002-11-03 00:24:07 +0000741extern void pci_register_hose(struct pci_controller* hose);
742extern struct pci_controller* pci_bus_to_hose(int bus);
Kumar Galadb943ed2010-12-17 05:57:25 -0600743extern struct pci_controller *find_hose_by_cfg_addr(void *cfg_addr);
Stuart Yoderf9503052016-03-10 10:52:18 -0600744extern struct pci_controller *pci_get_hose_head(void);
wdenkc6097192002-11-03 00:24:07 +0000745
746extern int pci_hose_scan(struct pci_controller *hose);
747extern int pci_hose_scan_bus(struct pci_controller *hose, int bus);
748
wdenkc6097192002-11-03 00:24:07 +0000749extern void pciauto_setup_device(struct pci_controller *hose,
750 pci_dev_t dev, int bars_num,
751 struct pci_region *mem,
Kumar Galae5ce4202006-01-11 13:24:15 -0600752 struct pci_region *prefetch,
wdenkc6097192002-11-03 00:24:07 +0000753 struct pci_region *io);
Linus Walleij00532722012-03-25 12:13:15 +0000754extern void pciauto_prescan_setup_bridge(struct pci_controller *hose,
755 pci_dev_t dev, int sub_bus);
756extern void pciauto_postscan_setup_bridge(struct pci_controller *hose,
757 pci_dev_t dev, int sub_bus);
Linus Walleij00532722012-03-25 12:13:15 +0000758extern int pciauto_config_device(struct pci_controller *hose, pci_dev_t dev);
wdenkc6097192002-11-03 00:24:07 +0000759
760extern pci_dev_t pci_find_device (unsigned int vendor, unsigned int device, int index);
761extern pci_dev_t pci_find_devices (struct pci_device_id *ids, int index);
Simon Glass62034ff2015-01-27 22:13:27 -0700762pci_dev_t pci_find_class(unsigned int find_class, int index);
wdenkc6097192002-11-03 00:24:07 +0000763
Zhao Qiang5d39f742013-10-12 13:46:33 +0800764extern int pci_hose_find_capability(struct pci_controller *hose, pci_dev_t dev,
765 int cap);
766extern int pci_hose_find_cap_start(struct pci_controller *hose, pci_dev_t dev,
767 u8 hdr_type);
768extern int pci_find_cap(struct pci_controller *hose, pci_dev_t dev, int pos,
769 int cap);
770
Minghuan Lianc5bc6aa2015-07-10 11:35:08 +0800771int pci_find_next_ext_capability(struct pci_controller *hose,
772 pci_dev_t dev, int start, int cap);
773int pci_hose_find_ext_capability(struct pci_controller *hose,
774 pci_dev_t dev, int cap);
775
Simon Glass3dba83b2021-08-01 18:54:16 -0600776#endif /* defined(CONFIG_DM_PCI_COMPAT) */
Tim Harvey231c0762014-08-07 22:49:56 -0700777
Peter Tyser22ccb7f2010-10-29 17:59:27 -0500778const char * pci_class_str(u8 class);
Anton Vorontsov597b8c42009-02-19 18:20:41 +0300779int pci_last_busno(void);
780
Jon Loeligerc934adb2006-10-19 11:33:52 -0500781#ifdef CONFIG_MPC85xx
782extern void pci_mpc85xx_init (struct pci_controller *hose);
783#endif
Paul Burton162116e2013-11-08 11:18:47 +0000784
Simon Glass6ac5af42014-11-14 18:18:30 -0700785/**
786 * pci_write_bar32() - Write the address of a BAR including control bits
787 *
Simon Glasse2b6b562016-01-18 20:19:15 -0700788 * This writes a raw address (with control bits) to a bar. This can be used
789 * with devices which require hard-coded addresses, not part of the normal
790 * PCI enumeration process.
Simon Glass6ac5af42014-11-14 18:18:30 -0700791 *
Simon Glass55b6a272021-08-01 18:54:17 -0600792 * This is only available if CONFIG_DM_PCI_COMPAT is enabled
793 *
Simon Glass6ac5af42014-11-14 18:18:30 -0700794 * @hose: PCI hose to use
795 * @dev: PCI device to update
796 * @barnum: BAR number (0-5)
797 * @addr: BAR address with control bits
798 */
799void pci_write_bar32(struct pci_controller *hose, pci_dev_t dev, int barnum,
Simon Glasse2b6b562016-01-18 20:19:15 -0700800 u32 addr);
Simon Glass6ac5af42014-11-14 18:18:30 -0700801
802/**
803 * pci_read_bar32() - read the address of a bar
804 *
Simon Glass55b6a272021-08-01 18:54:17 -0600805 * This is only available if CONFIG_DM_PCI_COMPAT is enabled
806 *
Simon Glass6ac5af42014-11-14 18:18:30 -0700807 * @hose: PCI hose to use
808 * @dev: PCI device to inspect
809 * @barnum: BAR number (0-5)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100810 * Return: address of the bar, masking out any control bits
Simon Glass6ac5af42014-11-14 18:18:30 -0700811 * */
812u32 pci_read_bar32(struct pci_controller *hose, pci_dev_t dev, int barnum);
813
Simon Glass1c1695b2015-01-14 21:37:04 -0700814/**
Simon Glass75532d82015-03-05 12:25:24 -0700815 * pci_hose_find_devices() - Find devices by vendor/device ID
816 *
Simon Glass55b6a272021-08-01 18:54:17 -0600817 * This is only available if CONFIG_DM_PCI_COMPAT is enabled
818 *
Simon Glass75532d82015-03-05 12:25:24 -0700819 * @hose: PCI hose to search
820 * @busnum: Bus number to search
821 * @ids: PCI vendor/device IDs to look for, terminated by 0, 0 record
822 * @indexp: Pointer to device index to find. To find the first matching
823 * device, pass 0; to find the second, pass 1, etc. This
824 * parameter is decremented for each non-matching device so
825 * can be called repeatedly.
826 */
827pci_dev_t pci_hose_find_devices(struct pci_controller *hose, int busnum,
828 struct pci_device_id *ids, int *indexp);
829
Simon Glassb94dc892015-03-05 12:25:25 -0700830/* Access sizes for PCI reads and writes */
831enum pci_size_t {
832 PCI_SIZE_8,
833 PCI_SIZE_16,
834 PCI_SIZE_32,
835};
836
837struct udevice;
838
Simon Glassb94dc892015-03-05 12:25:25 -0700839/**
Simon Glassb75b15b2020-12-03 16:55:23 -0700840 * struct pci_child_plat - information stored about each PCI device
Simon Glassb94dc892015-03-05 12:25:25 -0700841 *
842 * Every device on a PCI bus has this per-child data.
843 *
Simon Glass71fa5b42020-12-03 16:55:18 -0700844 * It can be accessed using dev_get_parent_plat(dev) if dev->parent is a
Simon Glassb94dc892015-03-05 12:25:25 -0700845 * PCI bus (i.e. UCLASS_PCI)
846 *
847 * @devfn: Encoded device and function index - see PCI_DEVFN()
848 * @vendor: PCI vendor ID (see pci_ids.h)
849 * @device: PCI device ID (see pci_ids.h)
850 * @class: PCI class, 3 bytes: (base, sub, prog-if)
Suneel Garapati13822f72019-10-19 16:07:20 -0700851 * @is_virtfn: True for Virtual Function device
852 * @pfdev: Handle to Physical Function device
853 * @virtid: Virtual Function Index
Simon Glassb94dc892015-03-05 12:25:25 -0700854 */
Simon Glassb75b15b2020-12-03 16:55:23 -0700855struct pci_child_plat {
Simon Glassb94dc892015-03-05 12:25:25 -0700856 int devfn;
857 unsigned short vendor;
858 unsigned short device;
859 unsigned int class;
Suneel Garapati13822f72019-10-19 16:07:20 -0700860
861 /* Variables for CONFIG_PCI_SRIOV */
862 bool is_virtfn;
863 struct udevice *pfdev;
864 int virtid;
Simon Glassb94dc892015-03-05 12:25:25 -0700865};
866
867/* PCI bus operations */
868struct dm_pci_ops {
869 /**
870 * read_config() - Read a PCI configuration value
871 *
872 * PCI buses must support reading and writing configuration values
873 * so that the bus can be scanned and its devices configured.
874 *
Simon Glass75e534b2020-12-16 21:20:07 -0700875 * Normally PCI_BUS(@bdf) is the same as @dev_seq(bus), but not always.
Simon Glassb94dc892015-03-05 12:25:25 -0700876 * If bridges exist it is possible to use the top-level bus to
877 * access a sub-bus. In that case @bus will be the top-level bus
878 * and PCI_BUS(bdf) will be a different (higher) value
879 *
880 * @bus: Bus to read from
881 * @bdf: Bus, device and function to read
882 * @offset: Byte offset within the device's configuration space
883 * @valuep: Place to put the returned value
884 * @size: Access size
885 * @return 0 if OK, -ve on error
886 */
Simon Glass2a311e82020-01-27 08:49:37 -0700887 int (*read_config)(const struct udevice *bus, pci_dev_t bdf,
888 uint offset, ulong *valuep, enum pci_size_t size);
Simon Glassb94dc892015-03-05 12:25:25 -0700889 /**
890 * write_config() - Write a PCI configuration value
891 *
892 * @bus: Bus to write to
893 * @bdf: Bus, device and function to write
894 * @offset: Byte offset within the device's configuration space
895 * @value: Value to write
896 * @size: Access size
897 * @return 0 if OK, -ve on error
898 */
899 int (*write_config)(struct udevice *bus, pci_dev_t bdf, uint offset,
900 ulong value, enum pci_size_t size);
901};
902
903/* Get access to a PCI bus' operations */
904#define pci_get_ops(dev) ((struct dm_pci_ops *)(dev)->driver->ops)
905
906/**
Simon Glasseaa14892015-11-29 13:17:47 -0700907 * dm_pci_get_bdf() - Get the BDF value for a device
Simon Glassc9118d42015-07-06 16:47:46 -0600908 *
909 * @dev: Device to check
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100910 * Return: bus/device/function value (see PCI_BDF())
Simon Glassc9118d42015-07-06 16:47:46 -0600911 */
Simon Glassc92aac12020-01-27 08:49:38 -0700912pci_dev_t dm_pci_get_bdf(const struct udevice *dev);
Simon Glassc9118d42015-07-06 16:47:46 -0600913
914/**
Simon Glassb94dc892015-03-05 12:25:25 -0700915 * pci_bind_bus_devices() - scan a PCI bus and bind devices
916 *
917 * Scan a PCI bus looking for devices. Bind each one that is found. If
918 * devices are already bound that match the scanned devices, just update the
919 * child data so that the device can be used correctly (this happens when
920 * the device tree describes devices we expect to see on the bus).
921 *
922 * Devices that are bound in this way will use a generic PCI driver which
923 * does nothing. The device can still be accessed but will not provide any
924 * driver interface.
925 *
926 * @bus: Bus containing devices to bind
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100927 * Return: 0 if OK, -ve on error
Simon Glassb94dc892015-03-05 12:25:25 -0700928 */
929int pci_bind_bus_devices(struct udevice *bus);
930
931/**
932 * pci_auto_config_devices() - configure bus devices ready for use
933 *
934 * This works through all devices on a bus by scanning the driver model
935 * data structures (normally these have been set up by pci_bind_bus_devices()
936 * earlier).
937 *
938 * Space is allocated for each PCI base address register (BAR) so that the
939 * devices are mapped into memory and I/O space ready for use.
940 *
941 * @bus: Bus containing devices to bind
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100942 * Return: 0 if OK, -ve on error
Simon Glassb94dc892015-03-05 12:25:25 -0700943 */
944int pci_auto_config_devices(struct udevice *bus);
945
946/**
Simon Glass84283d52015-11-29 13:17:48 -0700947 * dm_pci_bus_find_bdf() - Find a device given its PCI bus address
Simon Glassb94dc892015-03-05 12:25:25 -0700948 *
949 * @bdf: PCI device address: bus, device and function -see PCI_BDF()
950 * @devp: Returns the device for this address, if found
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100951 * Return: 0 if OK, -ENODEV if not found
Simon Glassb94dc892015-03-05 12:25:25 -0700952 */
Simon Glass84283d52015-11-29 13:17:48 -0700953int dm_pci_bus_find_bdf(pci_dev_t bdf, struct udevice **devp);
Simon Glassb94dc892015-03-05 12:25:25 -0700954
955/**
956 * pci_bus_find_devfn() - Find a device on a bus
957 *
958 * @find_devfn: PCI device address (device and function only)
959 * @devp: Returns the device for this address, if found
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100960 * Return: 0 if OK, -ENODEV if not found
Simon Glassb94dc892015-03-05 12:25:25 -0700961 */
Simon Glass2a311e82020-01-27 08:49:37 -0700962int pci_bus_find_devfn(const struct udevice *bus, pci_dev_t find_devfn,
Simon Glassb94dc892015-03-05 12:25:25 -0700963 struct udevice **devp);
964
965/**
Simon Glass04c8b6a2015-08-10 07:05:04 -0600966 * pci_find_first_device() - return the first available PCI device
967 *
Michal Suchanekd58cd542022-09-27 23:25:24 +0200968 * This function and pci_find_next_device() allow iteration through all
Simon Glass04c8b6a2015-08-10 07:05:04 -0600969 * available PCI devices on all buses. Assuming there are any, this will
970 * return the first one.
971 *
972 * @devp: Set to the first available device, or NULL if no more are left
973 * or we got an error
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100974 * Return: 0 if all is OK, -ve on error (e.g. a bus/bridge failed to probe)
Simon Glass04c8b6a2015-08-10 07:05:04 -0600975 */
976int pci_find_first_device(struct udevice **devp);
977
978/**
979 * pci_find_next_device() - return the next available PCI device
980 *
981 * Finds the next available PCI device after the one supplied, or sets @devp
982 * to NULL if there are no more.
983 *
984 * @devp: On entry, the last device returned. Set to the next available
985 * device, or NULL if no more are left or we got an error
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100986 * Return: 0 if all is OK, -ve on error (e.g. a bus/bridge failed to probe)
Simon Glass04c8b6a2015-08-10 07:05:04 -0600987 */
988int pci_find_next_device(struct udevice **devp);
989
990/**
Simon Glassb94dc892015-03-05 12:25:25 -0700991 * pci_get_ff() - Returns a mask for the given access size
992 *
993 * @size: Access size
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100994 * Return: 0xff for PCI_SIZE_8, 0xffff for PCI_SIZE_16, 0xffffffff for
Simon Glassb94dc892015-03-05 12:25:25 -0700995 * PCI_SIZE_32
996 */
997int pci_get_ff(enum pci_size_t size);
998
999/**
1000 * pci_bus_find_devices () - Find devices on a bus
1001 *
1002 * @bus: Bus to search
1003 * @ids: PCI vendor/device IDs to look for, terminated by 0, 0 record
1004 * @indexp: Pointer to device index to find. To find the first matching
1005 * device, pass 0; to find the second, pass 1, etc. This
1006 * parameter is decremented for each non-matching device so
1007 * can be called repeatedly.
1008 * @devp: Returns matching device if found
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001009 * Return: 0 if found, -ENODEV if not
Simon Glassb94dc892015-03-05 12:25:25 -07001010 */
Simon Glass3f7dc6e2021-06-27 17:50:56 -06001011int pci_bus_find_devices(struct udevice *bus, const struct pci_device_id *ids,
Simon Glassb94dc892015-03-05 12:25:25 -07001012 int *indexp, struct udevice **devp);
1013
1014/**
1015 * pci_find_device_id() - Find a device on any bus
1016 *
1017 * @ids: PCI vendor/device IDs to look for, terminated by 0, 0 record
1018 * @index: Index number of device to find, 0 for the first match, 1 for
1019 * the second, etc.
1020 * @devp: Returns matching device if found
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001021 * Return: 0 if found, -ENODEV if not
Simon Glassb94dc892015-03-05 12:25:25 -07001022 */
Simon Glass3f7dc6e2021-06-27 17:50:56 -06001023int pci_find_device_id(const struct pci_device_id *ids, int index,
Simon Glassb94dc892015-03-05 12:25:25 -07001024 struct udevice **devp);
1025
1026/**
1027 * dm_pci_hose_probe_bus() - probe a subordinate bus, scanning it for devices
1028 *
1029 * This probes the given bus which causes it to be scanned for devices. The
1030 * devices will be bound but not probed.
1031 *
1032 * @hose specifies the PCI hose that will be used for the scan. This is
1033 * always a top-level bus with uclass UCLASS_PCI. The bus to scan is
1034 * in @bdf, and is a subordinate bus reachable from @hose.
1035 *
1036 * @hose: PCI hose to scan
1037 * @bdf: PCI bus address to scan (PCI_BUS(bdf) is the bus number)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001038 * Return: 0 if OK, -ve on error
Simon Glassb94dc892015-03-05 12:25:25 -07001039 */
Simon Glass37a3f94b2015-11-29 13:17:49 -07001040int dm_pci_hose_probe_bus(struct udevice *bus);
Simon Glassb94dc892015-03-05 12:25:25 -07001041
1042/**
1043 * pci_bus_read_config() - Read a configuration value from a device
1044 *
1045 * TODO(sjg@chromium.org): We should be able to pass just a device and have
1046 * it do the right thing. It would be good to have that function also.
1047 *
1048 * @bus: Bus to read from
1049 * @bdf: PCI device address: bus, device and function -see PCI_BDF()
Simon Glass0d0f8312016-03-06 19:27:53 -07001050 * @offset: Register offset to read
Simon Glassb94dc892015-03-05 12:25:25 -07001051 * @valuep: Place to put the returned value
1052 * @size: Access size
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001053 * Return: 0 if OK, -ve on error
Simon Glassb94dc892015-03-05 12:25:25 -07001054 */
Simon Glassc92aac12020-01-27 08:49:38 -07001055int pci_bus_read_config(const struct udevice *bus, pci_dev_t bdf, int offset,
Simon Glassb94dc892015-03-05 12:25:25 -07001056 unsigned long *valuep, enum pci_size_t size);
1057
1058/**
1059 * pci_bus_write_config() - Write a configuration value to a device
1060 *
1061 * @bus: Bus to write from
1062 * @bdf: PCI device address: bus, device and function -see PCI_BDF()
Simon Glass0d0f8312016-03-06 19:27:53 -07001063 * @offset: Register offset to write
Simon Glassb94dc892015-03-05 12:25:25 -07001064 * @value: Value to write
1065 * @size: Access size
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001066 * Return: 0 if OK, -ve on error
Simon Glassb94dc892015-03-05 12:25:25 -07001067 */
1068int pci_bus_write_config(struct udevice *bus, pci_dev_t bdf, int offset,
1069 unsigned long value, enum pci_size_t size);
1070
Simon Glass94ef2422015-08-10 07:05:03 -06001071/**
Simon Glass9cec2df2016-03-06 19:27:52 -07001072 * pci_bus_clrset_config32() - Update a configuration value for a device
1073 *
1074 * The register at @offset is updated to (oldvalue & ~clr) | set.
1075 *
1076 * @bus: Bus to access
1077 * @bdf: PCI device address: bus, device and function -see PCI_BDF()
1078 * @offset: Register offset to update
1079 * @clr: Bits to clear
1080 * @set: Bits to set
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001081 * Return: 0 if OK, -ve on error
Simon Glass9cec2df2016-03-06 19:27:52 -07001082 */
1083int pci_bus_clrset_config32(struct udevice *bus, pci_dev_t bdf, int offset,
1084 u32 clr, u32 set);
1085
1086/**
Simon Glass94ef2422015-08-10 07:05:03 -06001087 * Driver model PCI config access functions. Use these in preference to others
1088 * when you have a valid device
1089 */
Simon Glassc92aac12020-01-27 08:49:38 -07001090int dm_pci_read_config(const struct udevice *dev, int offset,
1091 unsigned long *valuep, enum pci_size_t size);
Simon Glass94ef2422015-08-10 07:05:03 -06001092
Simon Glassc92aac12020-01-27 08:49:38 -07001093int dm_pci_read_config8(const struct udevice *dev, int offset, u8 *valuep);
1094int dm_pci_read_config16(const struct udevice *dev, int offset, u16 *valuep);
1095int dm_pci_read_config32(const struct udevice *dev, int offset, u32 *valuep);
Simon Glass94ef2422015-08-10 07:05:03 -06001096
1097int dm_pci_write_config(struct udevice *dev, int offset, unsigned long value,
1098 enum pci_size_t size);
1099
1100int dm_pci_write_config8(struct udevice *dev, int offset, u8 value);
1101int dm_pci_write_config16(struct udevice *dev, int offset, u16 value);
1102int dm_pci_write_config32(struct udevice *dev, int offset, u32 value);
1103
Simon Glass9cec2df2016-03-06 19:27:52 -07001104/**
1105 * These permit convenient read/modify/write on PCI configuration. The
1106 * register is updated to (oldvalue & ~clr) | set.
1107 */
1108int dm_pci_clrset_config8(struct udevice *dev, int offset, u32 clr, u32 set);
1109int dm_pci_clrset_config16(struct udevice *dev, int offset, u32 clr, u32 set);
1110int dm_pci_clrset_config32(struct udevice *dev, int offset, u32 clr, u32 set);
1111
Simon Glassb94dc892015-03-05 12:25:25 -07001112/*
1113 * The following functions provide access to the above without needing the
1114 * size parameter. We are trying to encourage the use of the 8/16/32-style
1115 * functions, rather than byte/word/dword. But both are supported.
1116 */
1117int pci_write_config32(pci_dev_t pcidev, int offset, u32 value);
Bin Meng02268592016-02-02 05:58:07 -08001118int pci_write_config16(pci_dev_t pcidev, int offset, u16 value);
1119int pci_write_config8(pci_dev_t pcidev, int offset, u8 value);
1120int pci_read_config32(pci_dev_t pcidev, int offset, u32 *valuep);
1121int pci_read_config16(pci_dev_t pcidev, int offset, u16 *valuep);
1122int pci_read_config8(pci_dev_t pcidev, int offset, u8 *valuep);
Simon Glassb94dc892015-03-05 12:25:25 -07001123
Tuomas Tynkkynen8cce4cf2017-09-19 23:18:03 +03001124/**
1125 * pci_generic_mmap_write_config() - Generic helper for writing to
1126 * memory-mapped PCI configuration space.
1127 * @bus: Pointer to the PCI bus
1128 * @addr_f: Callback for calculating the config space address
1129 * @bdf: Identifies the PCI device to access
1130 * @offset: The offset into the device's configuration space
1131 * @value: The value to write
1132 * @size: Indicates the size of access to perform
1133 *
1134 * Write the value @value of size @size from offset @offset within the
1135 * configuration space of the device identified by the bus, device & function
1136 * numbers in @bdf on the PCI bus @bus. The callback function @addr_f is
1137 * responsible for calculating the CPU address of the respective configuration
1138 * space offset.
1139 *
1140 * Return: 0 on success, else -EINVAL
1141 */
1142int pci_generic_mmap_write_config(
Simon Glass2a311e82020-01-27 08:49:37 -07001143 const struct udevice *bus,
1144 int (*addr_f)(const struct udevice *bus, pci_dev_t bdf, uint offset,
1145 void **addrp),
Tuomas Tynkkynen8cce4cf2017-09-19 23:18:03 +03001146 pci_dev_t bdf,
1147 uint offset,
1148 ulong value,
1149 enum pci_size_t size);
1150
1151/**
1152 * pci_generic_mmap_read_config() - Generic helper for reading from
1153 * memory-mapped PCI configuration space.
1154 * @bus: Pointer to the PCI bus
1155 * @addr_f: Callback for calculating the config space address
1156 * @bdf: Identifies the PCI device to access
1157 * @offset: The offset into the device's configuration space
1158 * @valuep: A pointer at which to store the read value
1159 * @size: Indicates the size of access to perform
1160 *
1161 * Read a value of size @size from offset @offset within the configuration
1162 * space of the device identified by the bus, device & function numbers in @bdf
1163 * on the PCI bus @bus. The callback function @addr_f is responsible for
1164 * calculating the CPU address of the respective configuration space offset.
1165 *
1166 * Return: 0 on success, else -EINVAL
1167 */
1168int pci_generic_mmap_read_config(
Simon Glass2a311e82020-01-27 08:49:37 -07001169 const struct udevice *bus,
1170 int (*addr_f)(const struct udevice *bus, pci_dev_t bdf, uint offset,
1171 void **addrp),
Tuomas Tynkkynen8cce4cf2017-09-19 23:18:03 +03001172 pci_dev_t bdf,
1173 uint offset,
1174 ulong *valuep,
1175 enum pci_size_t size);
1176
Suneel Garapati13822f72019-10-19 16:07:20 -07001177#if defined(CONFIG_PCI_SRIOV)
1178/**
1179 * pci_sriov_init() - Scan Virtual Function devices
1180 *
1181 * @pdev: Physical Function udevice handle
1182 * @vf_en: Number of Virtual Function devices to enable
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001183 * Return: 0 on success, -ve on error
Suneel Garapati13822f72019-10-19 16:07:20 -07001184 */
1185int pci_sriov_init(struct udevice *pdev, int vf_en);
1186
1187/**
1188 * pci_sriov_get_totalvfs() - Get total available Virtual Function devices
1189 *
1190 * @pdev: Physical Function udevice handle
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001191 * Return: count on success, -ve on error
Suneel Garapati13822f72019-10-19 16:07:20 -07001192 */
1193int pci_sriov_get_totalvfs(struct udevice *pdev);
1194#endif
1195
Simon Glasseca7b0d2015-11-26 19:51:30 -07001196#ifdef CONFIG_DM_PCI_COMPAT
Simon Glassb94dc892015-03-05 12:25:25 -07001197/* Compatibility with old naming */
1198static inline int pci_write_config_dword(pci_dev_t pcidev, int offset,
1199 u32 value)
1200{
1201 return pci_write_config32(pcidev, offset, value);
1202}
1203
Simon Glassb94dc892015-03-05 12:25:25 -07001204/* Compatibility with old naming */
1205static inline int pci_write_config_word(pci_dev_t pcidev, int offset,
1206 u16 value)
1207{
1208 return pci_write_config16(pcidev, offset, value);
1209}
1210
Simon Glassb94dc892015-03-05 12:25:25 -07001211/* Compatibility with old naming */
1212static inline int pci_write_config_byte(pci_dev_t pcidev, int offset,
1213 u8 value)
1214{
1215 return pci_write_config8(pcidev, offset, value);
1216}
1217
Simon Glassb94dc892015-03-05 12:25:25 -07001218/* Compatibility with old naming */
1219static inline int pci_read_config_dword(pci_dev_t pcidev, int offset,
1220 u32 *valuep)
1221{
1222 return pci_read_config32(pcidev, offset, valuep);
1223}
1224
Simon Glassb94dc892015-03-05 12:25:25 -07001225/* Compatibility with old naming */
1226static inline int pci_read_config_word(pci_dev_t pcidev, int offset,
1227 u16 *valuep)
1228{
1229 return pci_read_config16(pcidev, offset, valuep);
1230}
1231
Simon Glassb94dc892015-03-05 12:25:25 -07001232/* Compatibility with old naming */
1233static inline int pci_read_config_byte(pci_dev_t pcidev, int offset,
1234 u8 *valuep)
1235{
1236 return pci_read_config8(pcidev, offset, valuep);
1237}
Simon Glasseca7b0d2015-11-26 19:51:30 -07001238#endif /* CONFIG_DM_PCI_COMPAT */
1239
1240/**
1241 * dm_pciauto_config_device() - configure a device ready for use
1242 *
1243 * Space is allocated for each PCI base address register (BAR) so that the
1244 * devices are mapped into memory and I/O space ready for use.
1245 *
1246 * @dev: Device to configure
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001247 * Return: 0 if OK, -ve on error
Simon Glasseca7b0d2015-11-26 19:51:30 -07001248 */
1249int dm_pciauto_config_device(struct udevice *dev);
1250
Simon Glassd9e90bb2015-03-05 12:25:28 -07001251/**
Simon Glass27a733f2015-11-19 20:26:59 -07001252 * pci_conv_32_to_size() - convert a 32-bit read value to the given size
1253 *
1254 * Some PCI buses must always perform 32-bit reads. The data must then be
1255 * shifted and masked to reflect the required access size and offset. This
1256 * function performs this transformation.
1257 *
1258 * @value: Value to transform (32-bit value read from @offset & ~3)
1259 * @offset: Register offset that was read
1260 * @size: Required size of the result
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001261 * Return: the value that would have been obtained if the read had been
Simon Glass27a733f2015-11-19 20:26:59 -07001262 * performed at the given offset with the correct size
1263 */
1264ulong pci_conv_32_to_size(ulong value, uint offset, enum pci_size_t size);
1265
1266/**
1267 * pci_conv_size_to_32() - update a 32-bit value to prepare for a write
1268 *
1269 * Some PCI buses must always perform 32-bit writes. To emulate a smaller
1270 * write the old 32-bit data must be read, updated with the required new data
1271 * and written back as a 32-bit value. This function performs the
1272 * transformation from the old value to the new value.
1273 *
1274 * @value: Value to transform (32-bit value read from @offset & ~3)
1275 * @offset: Register offset that should be written
1276 * @size: Required size of the write
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001277 * Return: the value that should be written as a 32-bit access to @offset & ~3.
Simon Glass27a733f2015-11-19 20:26:59 -07001278 */
1279ulong pci_conv_size_to_32(ulong old, ulong value, uint offset,
1280 enum pci_size_t size);
1281
1282/**
Simon Glass6256d672015-11-19 20:27:00 -07001283 * pci_get_controller() - obtain the controller to use for a bus
1284 *
1285 * @dev: Device to check
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001286 * Return: pointer to the controller device for this bus
Simon Glass6256d672015-11-19 20:27:00 -07001287 */
1288struct udevice *pci_get_controller(struct udevice *dev);
1289
1290/**
Simon Glassdcdc0122015-11-19 20:27:01 -07001291 * pci_get_regions() - obtain pointers to all the region types
1292 *
1293 * @dev: Device to check
1294 * @iop: Returns a pointer to the I/O region, or NULL if none
1295 * @memp: Returns a pointer to the memory region, or NULL if none
1296 * @prefp: Returns a pointer to the pre-fetch region, or NULL if none
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001297 * Return: the number of non-NULL regions returned, normally 3
Simon Glassdcdc0122015-11-19 20:27:01 -07001298 */
1299int pci_get_regions(struct udevice *dev, struct pci_region **iop,
1300 struct pci_region **memp, struct pci_region **prefp);
Rayagonda Kokatanurcdc7ed32020-05-12 13:29:49 +05301301int
1302pci_get_dma_regions(struct udevice *dev, struct pci_region *memp, int index);
Simon Glassdcdc0122015-11-19 20:27:01 -07001303/**
Simon Glasse2b6b562016-01-18 20:19:15 -07001304 * dm_pci_write_bar32() - Write the address of a BAR
1305 *
1306 * This writes a raw address to a bar
1307 *
1308 * @dev: PCI device to update
1309 * @barnum: BAR number (0-5)
1310 * @addr: BAR address
1311 */
1312void dm_pci_write_bar32(struct udevice *dev, int barnum, u32 addr);
1313
1314/**
Simon Glass3452cb12015-11-29 13:17:53 -07001315 * dm_pci_read_bar32() - read a base address register from a device
1316 *
1317 * @dev: Device to check
1318 * @barnum: Bar number to read (numbered from 0)
1319 * @return: value of BAR
1320 */
Simon Glassc92aac12020-01-27 08:49:38 -07001321u32 dm_pci_read_bar32(const struct udevice *dev, int barnum);
Simon Glass3452cb12015-11-29 13:17:53 -07001322
1323/**
Andrew Scull3bf61522022-04-21 16:11:08 +00001324 * dm_pci_bus_to_phys() - convert a PCI bus address range to a physical address
Simon Glassc5f053b2015-11-29 13:18:03 -07001325 *
1326 * @dev: Device containing the PCI address
1327 * @addr: PCI address to convert
Andrew Scull3bf61522022-04-21 16:11:08 +00001328 * @len: Length of the address range
Andrew Scull994b60d2022-04-21 16:11:11 +00001329 * @mask: Mask to match flags for the region type
Simon Glassc5f053b2015-11-29 13:18:03 -07001330 * @flags: Flags for the region type (PCI_REGION_...)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001331 * Return: physical address corresponding to that PCI bus address
Simon Glassc5f053b2015-11-29 13:18:03 -07001332 */
Andrew Scull3bf61522022-04-21 16:11:08 +00001333phys_addr_t dm_pci_bus_to_phys(struct udevice *dev, pci_addr_t addr, size_t len,
Andrew Scull994b60d2022-04-21 16:11:11 +00001334 unsigned long mask, unsigned long flags);
Simon Glassc5f053b2015-11-29 13:18:03 -07001335
1336/**
1337 * dm_pci_phys_to_bus() - convert a physical address to a PCI bus address
1338 *
1339 * @dev: Device containing the bus address
1340 * @addr: Physical address to convert
Andrew Scull3bf61522022-04-21 16:11:08 +00001341 * @len: Length of the address range
Andrew Scull994b60d2022-04-21 16:11:11 +00001342 * @mask: Mask to match flags for the region type
Simon Glassc5f053b2015-11-29 13:18:03 -07001343 * @flags: Flags for the region type (PCI_REGION_...)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001344 * Return: PCI bus address corresponding to that physical address
Simon Glassc5f053b2015-11-29 13:18:03 -07001345 */
Andrew Scull3bf61522022-04-21 16:11:08 +00001346pci_addr_t dm_pci_phys_to_bus(struct udevice *dev, phys_addr_t addr, size_t len,
Andrew Scull994b60d2022-04-21 16:11:11 +00001347 unsigned long mask, unsigned long flags);
Simon Glassc5f053b2015-11-29 13:18:03 -07001348
1349/**
1350 * dm_pci_map_bar() - get a virtual address associated with a BAR region
1351 *
1352 * Looks up a base address register and finds the physical memory address
Alex Margineanb8514f32019-06-07 11:24:22 +03001353 * that corresponds to it.
1354 * Can be used for 32b BARs 0-5 on type 0 functions and for 32b BARs 0-1 on
1355 * type 1 functions.
Alex Marginean1c934a62019-06-07 11:24:23 +03001356 * Can also be used on type 0 functions that support Enhanced Allocation for
1357 * 32b/64b BARs. Note that duplicate BEI entries are not supported.
Moritz Fischer512b0212024-01-10 04:59:02 +00001358 * Can also be used on 64b bars on type 0 functions.
Simon Glassc5f053b2015-11-29 13:18:03 -07001359 *
1360 * @dev: Device to check
Alex Margineanb8514f32019-06-07 11:24:22 +03001361 * @bar: Bar register offset (PCI_BASE_ADDRESS_...)
Andrew Scull58c61022022-04-21 16:11:10 +00001362 * @offset: Offset from the base to map
1363 * @len: Length to map
Andrew Scull6520c822022-04-21 16:11:13 +00001364 * @mask: Mask to match flags for the region type
Simon Glassc5f053b2015-11-29 13:18:03 -07001365 * @flags: Flags for the region type (PCI_REGION_...)
Alex Margineanb8514f32019-06-07 11:24:22 +03001366 * @return: pointer to the virtual address to use or 0 on error
Simon Glassc5f053b2015-11-29 13:18:03 -07001367 */
Andrew Scull58c61022022-04-21 16:11:10 +00001368void *dm_pci_map_bar(struct udevice *dev, int bar, size_t offset, size_t len,
Andrew Scull6520c822022-04-21 16:11:13 +00001369 unsigned long mask, unsigned long flags);
Simon Glassc5f053b2015-11-29 13:18:03 -07001370
Bin Menga7366f02018-08-03 01:14:52 -07001371/**
Bin Meng631f3482018-10-15 02:21:21 -07001372 * dm_pci_find_next_capability() - find a capability starting from an offset
1373 *
1374 * Tell if a device supports a given PCI capability. Returns the
1375 * address of the requested capability structure within the device's
1376 * PCI configuration space or 0 in case the device does not support it.
1377 *
1378 * Possible values for @cap:
1379 *
1380 * %PCI_CAP_ID_MSI Message Signalled Interrupts
1381 * %PCI_CAP_ID_PCIX PCI-X
1382 * %PCI_CAP_ID_EXP PCI Express
1383 * %PCI_CAP_ID_MSIX MSI-X
1384 *
1385 * See PCI_CAP_ID_xxx for the complete capability ID codes.
1386 *
1387 * @dev: PCI device to query
1388 * @start: offset to start from
1389 * @cap: capability code
1390 * @return: capability address or 0 if not supported
1391 */
1392int dm_pci_find_next_capability(struct udevice *dev, u8 start, int cap);
1393
1394/**
Bin Menga7366f02018-08-03 01:14:52 -07001395 * dm_pci_find_capability() - find a capability
1396 *
1397 * Tell if a device supports a given PCI capability. Returns the
1398 * address of the requested capability structure within the device's
1399 * PCI configuration space or 0 in case the device does not support it.
1400 *
1401 * Possible values for @cap:
1402 *
1403 * %PCI_CAP_ID_MSI Message Signalled Interrupts
1404 * %PCI_CAP_ID_PCIX PCI-X
1405 * %PCI_CAP_ID_EXP PCI Express
1406 * %PCI_CAP_ID_MSIX MSI-X
1407 *
1408 * See PCI_CAP_ID_xxx for the complete capability ID codes.
1409 *
1410 * @dev: PCI device to query
1411 * @cap: capability code
1412 * @return: capability address or 0 if not supported
1413 */
1414int dm_pci_find_capability(struct udevice *dev, int cap);
1415
1416/**
Bin Meng631f3482018-10-15 02:21:21 -07001417 * dm_pci_find_next_ext_capability() - find an extended capability
1418 * starting from an offset
1419 *
1420 * Tell if a device supports a given PCI express extended capability.
1421 * Returns the address of the requested extended capability structure
1422 * within the device's PCI configuration space or 0 in case the device
1423 * does not support it.
1424 *
1425 * Possible values for @cap:
1426 *
1427 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
1428 * %PCI_EXT_CAP_ID_VC Virtual Channel
1429 * %PCI_EXT_CAP_ID_DSN Device Serial Number
1430 * %PCI_EXT_CAP_ID_PWR Power Budgeting
1431 *
1432 * See PCI_EXT_CAP_ID_xxx for the complete extended capability ID codes.
1433 *
1434 * @dev: PCI device to query
1435 * @start: offset to start from
1436 * @cap: extended capability code
1437 * @return: extended capability address or 0 if not supported
1438 */
1439int dm_pci_find_next_ext_capability(struct udevice *dev, int start, int cap);
1440
1441/**
Bin Menga7366f02018-08-03 01:14:52 -07001442 * dm_pci_find_ext_capability() - find an extended capability
1443 *
1444 * Tell if a device supports a given PCI express extended capability.
1445 * Returns the address of the requested extended capability structure
1446 * within the device's PCI configuration space or 0 in case the device
1447 * does not support it.
1448 *
1449 * Possible values for @cap:
1450 *
1451 * %PCI_EXT_CAP_ID_ERR Advanced Error Reporting
1452 * %PCI_EXT_CAP_ID_VC Virtual Channel
1453 * %PCI_EXT_CAP_ID_DSN Device Serial Number
1454 * %PCI_EXT_CAP_ID_PWR Power Budgeting
1455 *
1456 * See PCI_EXT_CAP_ID_xxx for the complete extended capability ID codes.
1457 *
1458 * @dev: PCI device to query
1459 * @cap: extended capability code
1460 * @return: extended capability address or 0 if not supported
1461 */
1462int dm_pci_find_ext_capability(struct udevice *dev, int cap);
1463
Alex Marginean09467d32019-06-07 11:24:25 +03001464/**
1465 * dm_pci_flr() - Perform FLR if the device suppoorts it
1466 *
1467 * @dev: PCI device to reset
1468 * @return: 0 if OK, -ENOENT if FLR is not supported by dev
1469 */
1470int dm_pci_flr(struct udevice *dev);
1471
Simon Glassc5f053b2015-11-29 13:18:03 -07001472#define dm_pci_virt_to_bus(dev, addr, flags) \
Andrew Scull994b60d2022-04-21 16:11:11 +00001473 dm_pci_phys_to_bus(dev, (virt_to_phys(addr)), 0, PCI_REGION_TYPE, (flags))
Andrew Scull3e0f2fb2022-04-21 16:11:12 +00001474#define dm_pci_bus_to_virt(dev, addr, len, mask, flags, map_flags) \
1475({ \
1476 size_t _len = (len); \
1477 phys_addr_t phys_addr = dm_pci_bus_to_phys((dev), (addr), _len, \
1478 (mask), (flags)); \
1479 map_physmem(phys_addr, _len, (map_flags)); \
1480})
Simon Glassc5f053b2015-11-29 13:18:03 -07001481
1482#define dm_pci_phys_to_mem(dev, addr) \
Andrew Scull994b60d2022-04-21 16:11:11 +00001483 dm_pci_phys_to_bus((dev), (addr), 0, PCI_REGION_TYPE, PCI_REGION_MEM)
Simon Glassc5f053b2015-11-29 13:18:03 -07001484#define dm_pci_mem_to_phys(dev, addr) \
Andrew Scull994b60d2022-04-21 16:11:11 +00001485 dm_pci_bus_to_phys((dev), (addr), 0, PCI_REGION_TYPE, PCI_REGION_MEM)
Simon Glassc5f053b2015-11-29 13:18:03 -07001486#define dm_pci_phys_to_io(dev, addr) \
Andrew Scull994b60d2022-04-21 16:11:11 +00001487 dm_pci_phys_to_bus((dev), (addr), 0, PCI_REGION_TYPE, PCI_REGION_IO)
Simon Glassc5f053b2015-11-29 13:18:03 -07001488#define dm_pci_io_to_phys(dev, addr) \
Andrew Scull994b60d2022-04-21 16:11:11 +00001489 dm_pci_bus_to_phys((dev), (addr), 0, PCI_REGION_TYPE, PCI_REGION_IO)
Simon Glassc5f053b2015-11-29 13:18:03 -07001490
1491#define dm_pci_virt_to_mem(dev, addr) \
1492 dm_pci_virt_to_bus((dev), (addr), PCI_REGION_MEM)
1493#define dm_pci_mem_to_virt(dev, addr, len, map_flags) \
Andrew Scull3e0f2fb2022-04-21 16:11:12 +00001494 dm_pci_bus_to_virt((dev), (addr), (len), PCI_REGION_TYPE, \
1495 PCI_REGION_MEM, (map_flags))
Simon Glassc5f053b2015-11-29 13:18:03 -07001496#define dm_pci_virt_to_io(dev, addr) \
Simon Glass0d0f8312016-03-06 19:27:53 -07001497 dm_pci_virt_to_bus((dev), (addr), PCI_REGION_IO)
Simon Glassc5f053b2015-11-29 13:18:03 -07001498#define dm_pci_io_to_virt(dev, addr, len, map_flags) \
Andrew Scull3e0f2fb2022-04-21 16:11:12 +00001499 dm_pci_bus_to_virt((dev), (addr), (len), PCI_REGION_TYPE, \
1500 PCI_REGION_IO, (map_flags))
Simon Glassc5f053b2015-11-29 13:18:03 -07001501
1502/**
Simon Glass70e0c582015-11-29 13:17:50 -07001503 * dm_pci_find_device() - find a device by vendor/device ID
1504 *
1505 * @vendor: Vendor ID
1506 * @device: Device ID
1507 * @index: 0 to find the first match, 1 for second, etc.
1508 * @devp: Returns pointer to the device, if found
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001509 * Return: 0 if found, -ve on error
Simon Glass70e0c582015-11-29 13:17:50 -07001510 */
1511int dm_pci_find_device(unsigned int vendor, unsigned int device, int index,
1512 struct udevice **devp);
1513
1514/**
Simon Glassb639d512015-11-29 13:17:52 -07001515 * dm_pci_find_class() - find a device by class
1516 *
1517 * @find_class: 3-byte (24-bit) class value to find
1518 * @index: 0 to find the first match, 1 for second, etc.
1519 * @devp: Returns pointer to the device, if found
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001520 * Return: 0 if found, -ve on error
Simon Glassb639d512015-11-29 13:17:52 -07001521 */
1522int dm_pci_find_class(uint find_class, int index, struct udevice **devp);
1523
1524/**
Simon Glassa51fd072019-09-21 14:32:41 -06001525 * struct pci_emul_uc_priv - holds info about an emulator device
1526 *
1527 * There is always at most one emulator per client
1528 *
1529 * @client: Client device if any, else NULL
1530 */
1531struct pci_emul_uc_priv {
1532 struct udevice *client;
1533};
1534
1535/**
Simon Glassd9e90bb2015-03-05 12:25:28 -07001536 * struct dm_pci_emul_ops - PCI device emulator operations
1537 */
1538struct dm_pci_emul_ops {
1539 /**
Simon Glassd9e90bb2015-03-05 12:25:28 -07001540 * read_config() - Read a PCI configuration value
1541 *
1542 * @dev: Emulated device to read from
1543 * @offset: Byte offset within the device's configuration space
1544 * @valuep: Place to put the returned value
1545 * @size: Access size
1546 * @return 0 if OK, -ve on error
1547 */
Simon Glass2a311e82020-01-27 08:49:37 -07001548 int (*read_config)(const struct udevice *dev, uint offset,
1549 ulong *valuep, enum pci_size_t size);
Simon Glassd9e90bb2015-03-05 12:25:28 -07001550 /**
1551 * write_config() - Write a PCI configuration value
1552 *
1553 * @dev: Emulated device to write to
1554 * @offset: Byte offset within the device's configuration space
1555 * @value: Value to write
1556 * @size: Access size
1557 * @return 0 if OK, -ve on error
1558 */
1559 int (*write_config)(struct udevice *dev, uint offset, ulong value,
1560 enum pci_size_t size);
1561 /**
1562 * read_io() - Read a PCI I/O value
1563 *
1564 * @dev: Emulated device to read from
1565 * @addr: I/O address to read
1566 * @valuep: Place to put the returned value
1567 * @size: Access size
1568 * @return 0 if OK, -ENOENT if @addr is not mapped by this device,
1569 * other -ve value on error
1570 */
1571 int (*read_io)(struct udevice *dev, unsigned int addr, ulong *valuep,
1572 enum pci_size_t size);
1573 /**
1574 * write_io() - Write a PCI I/O value
1575 *
1576 * @dev: Emulated device to write from
1577 * @addr: I/O address to write
1578 * @value: Value to write
1579 * @size: Access size
1580 * @return 0 if OK, -ENOENT if @addr is not mapped by this device,
1581 * other -ve value on error
1582 */
1583 int (*write_io)(struct udevice *dev, unsigned int addr,
1584 ulong value, enum pci_size_t size);
1585 /**
1586 * map_physmem() - Map a device into sandbox memory
1587 *
1588 * @dev: Emulated device to map
1589 * @addr: Memory address, normally corresponding to a PCI BAR.
1590 * The device should have been configured to have a BAR
1591 * at this address.
1592 * @lenp: On entry, the size of the area to map, On exit it is
1593 * updated to the size actually mapped, which may be less
1594 * if the device has less space
1595 * @ptrp: Returns a pointer to the mapped address. The device's
1596 * space can be accessed as @lenp bytes starting here
1597 * @return 0 if OK, -ENOENT if @addr is not mapped by this device,
1598 * other -ve value on error
1599 */
1600 int (*map_physmem)(struct udevice *dev, phys_addr_t addr,
1601 unsigned long *lenp, void **ptrp);
1602 /**
1603 * unmap_physmem() - undo a memory mapping
1604 *
1605 * This must be called after map_physmem() to undo the mapping.
1606 * Some devices can use this to check what has been written into
1607 * their mapped memory and perform an operations they require on it.
1608 * In this way, map/unmap can be used as a sort of handshake between
1609 * the emulated device and its users.
1610 *
1611 * @dev: Emuated device to unmap
1612 * @vaddr: Mapped memory address, as passed to map_physmem()
1613 * @len: Size of area mapped, as returned by map_physmem()
1614 * @return 0 if OK, -ve on error
1615 */
1616 int (*unmap_physmem)(struct udevice *dev, const void *vaddr,
1617 unsigned long len);
1618};
1619
1620/* Get access to a PCI device emulator's operations */
1621#define pci_get_emul_ops(dev) ((struct dm_pci_emul_ops *)(dev)->driver->ops)
1622
1623/**
1624 * sandbox_pci_get_emul() - Get the emulation device for a PCI device
1625 *
1626 * Searches for a suitable emulator for the given PCI bus device
1627 *
1628 * @bus: PCI bus to search
1629 * @find_devfn: PCI device and function address (PCI_DEVFN())
Bin Meng156bc6f2018-08-03 01:14:45 -07001630 * @containerp: Returns container device if found
Simon Glassd9e90bb2015-03-05 12:25:28 -07001631 * @emulp: Returns emulated device if found
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001632 * Return: 0 if found, -ENODEV if not found
Simon Glassd9e90bb2015-03-05 12:25:28 -07001633 */
Simon Glass2a311e82020-01-27 08:49:37 -07001634int sandbox_pci_get_emul(const struct udevice *bus, pci_dev_t find_devfn,
Bin Meng156bc6f2018-08-03 01:14:45 -07001635 struct udevice **containerp, struct udevice **emulp);
Simon Glassd9e90bb2015-03-05 12:25:28 -07001636
Stefan Roesea74eb552019-01-25 11:52:42 +01001637/**
Simon Glassa51fd072019-09-21 14:32:41 -06001638 * sandbox_pci_get_client() - Find the client for an emulation device
1639 *
1640 * @emul: Emulation device to check
1641 * @devp: Returns the client device emulated by this device
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +01001642 * Return: 0 if OK, -ENOENT if the device has no client yet
Simon Glassa51fd072019-09-21 14:32:41 -06001643 */
1644int sandbox_pci_get_client(struct udevice *emul, struct udevice **devp);
1645
Tim Harvey4c57bf72021-04-16 14:53:47 -07001646/**
1647 * board_pci_fixup_dev() - Board callback for PCI device fixups
1648 *
1649 * @bus: PCI bus
1650 * @dev: PCI device
1651 */
1652extern void board_pci_fixup_dev(struct udevice *bus, struct udevice *dev);
1653
Simon Glass318d71c2015-07-06 16:47:44 -06001654/**
1655 * PCI_DEVICE - macro used to describe a specific pci device
1656 * @vend: the 16 bit PCI Vendor ID
1657 * @dev: the 16 bit PCI Device ID
1658 *
1659 * This macro is used to create a struct pci_device_id that matches a
1660 * specific device. The subvendor and subdevice fields will be set to
1661 * PCI_ANY_ID.
1662 */
1663#define PCI_DEVICE(vend, dev) \
1664 .vendor = (vend), .device = (dev), \
1665 .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID
1666
1667/**
1668 * PCI_DEVICE_SUB - macro used to describe a specific pci device with subsystem
1669 * @vend: the 16 bit PCI Vendor ID
1670 * @dev: the 16 bit PCI Device ID
1671 * @subvend: the 16 bit PCI Subvendor ID
1672 * @subdev: the 16 bit PCI Subdevice ID
1673 *
1674 * This macro is used to create a struct pci_device_id that matches a
1675 * specific device with subsystem information.
1676 */
1677#define PCI_DEVICE_SUB(vend, dev, subvend, subdev) \
1678 .vendor = (vend), .device = (dev), \
1679 .subvendor = (subvend), .subdevice = (subdev)
1680
1681/**
1682 * PCI_DEVICE_CLASS - macro used to describe a specific pci device class
1683 * @dev_class: the class, subclass, prog-if triple for this device
1684 * @dev_class_mask: the class mask for this device
1685 *
1686 * This macro is used to create a struct pci_device_id that matches a
1687 * specific PCI class. The vendor, device, subvendor, and subdevice
1688 * fields will be set to PCI_ANY_ID.
1689 */
1690#define PCI_DEVICE_CLASS(dev_class, dev_class_mask) \
1691 .class = (dev_class), .class_mask = (dev_class_mask), \
1692 .vendor = PCI_ANY_ID, .device = PCI_ANY_ID, \
1693 .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID
1694
1695/**
1696 * PCI_VDEVICE - macro used to describe a specific pci device in short form
1697 * @vend: the vendor name
1698 * @dev: the 16 bit PCI Device ID
1699 *
1700 * This macro is used to create a struct pci_device_id that matches a
1701 * specific PCI device. The subvendor, and subdevice fields will be set
1702 * to PCI_ANY_ID. The macro allows the next field to follow as the device
1703 * private data.
1704 */
1705
1706#define PCI_VDEVICE(vend, dev) \
1707 .vendor = PCI_VENDOR_ID_##vend, .device = (dev), \
1708 .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID, 0, 0
1709
1710/**
1711 * struct pci_driver_entry - Matches a driver to its pci_device_id list
1712 * @driver: Driver to use
1713 * @match: List of match records for this driver, terminated by {}
1714 */
1715struct pci_driver_entry {
1716 struct driver *driver;
1717 const struct pci_device_id *match;
1718};
1719
1720#define U_BOOT_PCI_DEVICE(__name, __match) \
1721 ll_entry_declare(struct pci_driver_entry, __name, pci_driver_entry) = {\
1722 .driver = llsym(struct driver, __name, driver), \
1723 .match = __match, \
1724 }
Simon Glassb94dc892015-03-05 12:25:25 -07001725
Paul Burton162116e2013-11-08 11:18:47 +00001726#endif /* __ASSEMBLY__ */
1727#endif /* _PCI_H */