1 // SPDX-License-Identifier: GPL-2.0+
3 * Uclass for Primary-to-sideband bus, used to access various peripherals
5 * Copyright 2019 Google LLC
9 #define LOG_CATEGORY UCLASS_P2SB
18 #include <dm/uclass-internal.h>
20 #define PCR_COMMON_IOSF_1_0 1
22 int p2sb_set_hide(struct udevice *dev, bool hide)
24 struct p2sb_ops *ops = p2sb_get_ops(dev);
29 return ops->set_hide(dev, hide);
32 void *pcr_reg_address(struct udevice *dev, uint offset)
34 struct p2sb_child_plat *pplat = dev_get_parent_plat(dev);
35 struct udevice *p2sb = dev_get_parent(dev);
36 struct p2sb_uc_priv *upriv = dev_get_uclass_priv(p2sb);
39 /* Create an address based off of port id and offset */
40 reg_addr = upriv->mmio_base;
41 reg_addr += pplat->pid << PCR_PORTID_SHIFT;
44 return map_sysmem(reg_addr, 4);
48 * The mapping of addresses via the SBREG_BAR assumes the IOSF-SB
49 * agents are using 32-bit aligned accesses for their configuration
50 * registers. For IOSF versions greater than 1_0, IOSF-SB
51 * agents can use any access (8/16/32 bit aligned) for their
52 * configuration registers
54 static inline void check_pcr_offset_align(uint offset, uint size)
56 const size_t align = PCR_COMMON_IOSF_1_0 ? sizeof(uint32_t) : size;
58 assert(IS_ALIGNED(offset, align));
61 uint pcr_read32(struct udevice *dev, uint offset)
66 /* Ensure the PCR offset is correctly aligned */
67 assert(IS_ALIGNED(offset, sizeof(uint32_t)));
69 ptr = pcr_reg_address(dev, offset);
76 uint pcr_read16(struct udevice *dev, uint offset)
78 /* Ensure the PCR offset is correctly aligned */
79 check_pcr_offset_align(offset, sizeof(uint16_t));
81 return readw(pcr_reg_address(dev, offset));
84 uint pcr_read8(struct udevice *dev, uint offset)
86 /* Ensure the PCR offset is correctly aligned */
87 check_pcr_offset_align(offset, sizeof(uint8_t));
89 return readb(pcr_reg_address(dev, offset));
93 * After every write one needs to perform a read an innocuous register to
94 * ensure the writes are completed for certain ports. This is done for
95 * all ports so that the callers don't need the per-port knowledge for
98 static void write_completion(struct udevice *dev, uint offset)
100 readl(pcr_reg_address(dev, ALIGN_DOWN(offset, sizeof(uint32_t))));
103 void pcr_write32(struct udevice *dev, uint offset, uint indata)
105 /* Ensure the PCR offset is correctly aligned */
106 assert(IS_ALIGNED(offset, sizeof(indata)));
108 writel(indata, pcr_reg_address(dev, offset));
109 /* Ensure the writes complete */
110 write_completion(dev, offset);
113 void pcr_write16(struct udevice *dev, uint offset, uint indata)
115 /* Ensure the PCR offset is correctly aligned */
116 check_pcr_offset_align(offset, sizeof(uint16_t));
118 writew(indata, pcr_reg_address(dev, offset));
119 /* Ensure the writes complete */
120 write_completion(dev, offset);
123 void pcr_write8(struct udevice *dev, uint offset, uint indata)
125 /* Ensure the PCR offset is correctly aligned */
126 check_pcr_offset_align(offset, sizeof(uint8_t));
128 writeb(indata, pcr_reg_address(dev, offset));
129 /* Ensure the writes complete */
130 write_completion(dev, offset);
133 void pcr_clrsetbits32(struct udevice *dev, uint offset, uint clr, uint set)
137 data32 = pcr_read32(dev, offset);
140 pcr_write32(dev, offset, data32);
143 void pcr_clrsetbits16(struct udevice *dev, uint offset, uint clr, uint set)
147 data16 = pcr_read16(dev, offset);
150 pcr_write16(dev, offset, data16);
153 void pcr_clrsetbits8(struct udevice *dev, uint offset, uint clr, uint set)
157 data8 = pcr_read8(dev, offset);
160 pcr_write8(dev, offset, data8);
163 int p2sb_get_port_id(struct udevice *dev)
165 struct p2sb_child_plat *pplat = dev_get_parent_plat(dev);
170 int p2sb_set_port_id(struct udevice *dev, int portid)
172 struct p2sb_child_plat *pplat;
174 if (!CONFIG_IS_ENABLED(OF_PLATDATA))
177 pplat = dev_get_parent_plat(dev);
183 static int p2sb_child_post_bind(struct udevice *dev)
185 if (CONFIG_IS_ENABLED(OF_REAL)) {
186 struct p2sb_child_plat *pplat = dev_get_parent_plat(dev);
190 ret = dev_read_u32(dev, "intel,p2sb-port-id", &pid);
199 static int p2sb_post_bind(struct udevice *dev)
201 if (spl_phase() > PHASE_TPL && !CONFIG_IS_ENABLED(OF_PLATDATA))
202 return dm_scan_fdt_dev(dev);
207 UCLASS_DRIVER(p2sb) = {
210 .per_device_auto = sizeof(struct p2sb_uc_priv),
211 .post_bind = p2sb_post_bind,
212 .child_post_bind = p2sb_child_post_bind,
213 .per_child_plat_auto = sizeof(struct p2sb_child_plat),