blob: 89c99062d2cd31e0c01c02f79facdeb5e4347f98 [file] [log] [blame]
Angel Pons32859fc2020-04-02 23:48:27 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer00636b02012-04-04 00:08:51 +02002
Kyösti Mälkki54d6abd2013-06-19 23:05:00 +03003#ifndef _PCI_MMIO_CFG_H
4#define _PCI_MMIO_CFG_H
5
Kyösti Mälkki8fd78a62019-01-23 15:59:38 +02006#include <stdint.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +02007#include <device/mmio.h>
Kyösti Mälkki8fd78a62019-01-23 15:59:38 +02008#include <device/pci_type.h>
Kyösti Mälkki54d6abd2013-06-19 23:05:00 +03009
Kyösti Mälkkid2cdfff2019-03-05 07:56:38 +020010/* Using a unique datatype for MMIO writes makes the pointers to _not_
11 * qualify for pointer aliasing with any other objects in memory.
12 *
13 * MMIO offset is a value originally derived from 'struct device *'
14 * in ramstage. For the compiler to not discard this MMIO offset value
15 * from CPU registers after any MMIO writes, -fstrict-aliasing has to
16 * be also set for the build.
17 *
18 * Bottom 12 bits (4 KiB) are reserved to address the registers of a
19 * single PCI function. Declare the bank as a union to avoid some casting
20 * in the functions below.
21 */
22union pci_bank {
23 uint8_t reg8[4096];
24 uint16_t reg16[4096 / sizeof(uint16_t)];
25 uint32_t reg32[4096 / sizeof(uint32_t)];
26};
27
Shelley Chen4e9bb332021-10-20 15:43:45 -070028#if CONFIG(ECAM_MMCONF_SUPPORT)
Nico Hubere01e25d2021-10-14 18:22:30 +020029
Shelley Chen4e9bb332021-10-20 15:43:45 -070030#if CONFIG_ECAM_MMCONF_BASE_ADDRESS == 0
31#error "CONFIG_ECAM_MMCONF_BASE_ADDRESS undefined!"
Nico Hubere01e25d2021-10-14 18:22:30 +020032#endif
33
Shelley Chen4e9bb332021-10-20 15:43:45 -070034#if CONFIG_ECAM_MMCONF_BUS_NUMBER * MiB != CONFIG_ECAM_MMCONF_LENGTH
35#error "CONFIG_ECAM_MMCONF_LENGTH does not correspond with CONFIG_ECAM_MMCONF_BUS_NUMBER!"
Nico Hubere01e25d2021-10-14 18:22:30 +020036#endif
37
Shelley Chen4e9bb332021-10-20 15:43:45 -070038/* By not assigning this to CONFIG_ECAM_MMCONF_BASE_ADDRESS here we
Nico Hubere01e25d2021-10-14 18:22:30 +020039 prevent some sub-optimal constant folding. */
40extern u8 *const pci_mmconf;
41
Kyösti Mälkkid2cdfff2019-03-05 07:56:38 +020042static __always_inline
Jianjun Wang75a7c6e2021-11-27 14:11:02 +080043volatile union pci_bank *pci_map_bus(pci_devfn_t dev)
Kyösti Mälkkid2cdfff2019-03-05 07:56:38 +020044{
45 return (void *)&pci_mmconf[PCI_DEVFN_OFFSET(dev)];
46}
Stefan Reinauer00636b02012-04-04 00:08:51 +020047
Jianjun Wang75a7c6e2021-11-27 14:11:02 +080048#else
49
50/* For platforms not supporting ECAM, they need to define pci_map_bus function
51 * in their platform-specific code */
52volatile union pci_bank *pci_map_bus(pci_devfn_t dev);
53
Nico Hubere01e25d2021-10-14 18:22:30 +020054#endif
55
Nico Huberf4f365f2021-10-14 18:16:39 +020056/*
57 * Avoid name collisions as different stages have different signature
58 * for these functions. The _s_ stands for simple, fundamental IO or
59 * MMIO variant.
60 */
61
Aaron Durbin75a62e72018-09-13 02:10:45 -060062static __always_inline
Nico Huberf4f365f2021-10-14 18:16:39 +020063uint8_t pci_s_read_config8(pci_devfn_t dev, uint16_t reg)
Stefan Reinauer00636b02012-04-04 00:08:51 +020064{
Jianjun Wang75a7c6e2021-11-27 14:11:02 +080065 return pci_map_bus(dev)->reg8[reg];
Stefan Reinauer00636b02012-04-04 00:08:51 +020066}
67
Aaron Durbin75a62e72018-09-13 02:10:45 -060068static __always_inline
Nico Huberf4f365f2021-10-14 18:16:39 +020069uint16_t pci_s_read_config16(pci_devfn_t dev, uint16_t reg)
Stefan Reinauer00636b02012-04-04 00:08:51 +020070{
Jianjun Wang75a7c6e2021-11-27 14:11:02 +080071 return pci_map_bus(dev)->reg16[reg / sizeof(uint16_t)];
Stefan Reinauer00636b02012-04-04 00:08:51 +020072}
73
Aaron Durbin75a62e72018-09-13 02:10:45 -060074static __always_inline
Nico Huberf4f365f2021-10-14 18:16:39 +020075uint32_t pci_s_read_config32(pci_devfn_t dev, uint16_t reg)
Stefan Reinauer00636b02012-04-04 00:08:51 +020076{
Jianjun Wang75a7c6e2021-11-27 14:11:02 +080077 return pci_map_bus(dev)->reg32[reg / sizeof(uint32_t)];
Stefan Reinauer00636b02012-04-04 00:08:51 +020078}
79
Aaron Durbin75a62e72018-09-13 02:10:45 -060080static __always_inline
Nico Huberf4f365f2021-10-14 18:16:39 +020081void pci_s_write_config8(pci_devfn_t dev, uint16_t reg, uint8_t value)
Stefan Reinauer00636b02012-04-04 00:08:51 +020082{
Jianjun Wang75a7c6e2021-11-27 14:11:02 +080083 pci_map_bus(dev)->reg8[reg] = value;
Stefan Reinauer00636b02012-04-04 00:08:51 +020084}
85
Aaron Durbin75a62e72018-09-13 02:10:45 -060086static __always_inline
Nico Huberf4f365f2021-10-14 18:16:39 +020087void pci_s_write_config16(pci_devfn_t dev, uint16_t reg, uint16_t value)
Stefan Reinauer00636b02012-04-04 00:08:51 +020088{
Jianjun Wang75a7c6e2021-11-27 14:11:02 +080089 pci_map_bus(dev)->reg16[reg / sizeof(uint16_t)] = value;
Stefan Reinauer00636b02012-04-04 00:08:51 +020090}
91
Aaron Durbin75a62e72018-09-13 02:10:45 -060092static __always_inline
Nico Huberf4f365f2021-10-14 18:16:39 +020093void pci_s_write_config32(pci_devfn_t dev, uint16_t reg, uint32_t value)
Stefan Reinauer00636b02012-04-04 00:08:51 +020094{
Jianjun Wang75a7c6e2021-11-27 14:11:02 +080095 pci_map_bus(dev)->reg32[reg / sizeof(uint32_t)] = value;
Stefan Reinauer00636b02012-04-04 00:08:51 +020096}
97
Michael Niewöhnerefe3cfb2019-11-15 22:47:33 +010098/*
99 * The functions pci_mmio_config*_addr provide a way to determine the MMIO address of a PCI
100 * config register. The address returned is dependent of both the MMCONF base address and the
101 * assigned PCI bus number of the requested device, which both can change during the boot
102 * process. Thus, the pointer returned here must not be cached!
103 */
Michael Niewöhner8f221362019-11-08 22:02:02 +0100104static __always_inline
105uint8_t *pci_mmio_config8_addr(pci_devfn_t dev, uint16_t reg)
106{
Jianjun Wang75a7c6e2021-11-27 14:11:02 +0800107 return (uint8_t *)&pci_map_bus(dev)->reg8[reg];
Michael Niewöhner8f221362019-11-08 22:02:02 +0100108}
109
110static __always_inline
111uint16_t *pci_mmio_config16_addr(pci_devfn_t dev, uint16_t reg)
112{
Jianjun Wang75a7c6e2021-11-27 14:11:02 +0800113 return (uint16_t *)&pci_map_bus(dev)->reg16[reg / sizeof(uint16_t)];
Michael Niewöhner8f221362019-11-08 22:02:02 +0100114}
115
116static __always_inline
117uint32_t *pci_mmio_config32_addr(pci_devfn_t dev, uint16_t reg)
118{
Jianjun Wang75a7c6e2021-11-27 14:11:02 +0800119 return (uint32_t *)&pci_map_bus(dev)->reg32[reg / sizeof(uint32_t)];
Michael Niewöhner8f221362019-11-08 22:02:02 +0100120}
121
Kyösti Mälkki54d6abd2013-06-19 23:05:00 +0300122#endif /* _PCI_MMIO_CFG_H */