1 // SPDX-License-Identifier: GPL-2.0+
3 * Uclass for Primary-to-sideband bus, used to access various peripherals
5 * Copyright 2019 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
17 #include <dm/uclass-internal.h>
19 #define PCR_COMMON_IOSF_1_0 1
21 static void *_pcr_reg_address(struct udevice *dev, uint offset)
23 struct p2sb_child_platdata *pplat = dev_get_parent_platdata(dev);
24 struct udevice *p2sb = dev_get_parent(dev);
25 struct p2sb_uc_priv *upriv = dev_get_uclass_priv(p2sb);
28 /* Create an address based off of port id and offset */
29 reg_addr = upriv->mmio_base;
30 reg_addr += pplat->pid << PCR_PORTID_SHIFT;
33 return map_sysmem(reg_addr, 4);
37 * The mapping of addresses via the SBREG_BAR assumes the IOSF-SB
38 * agents are using 32-bit aligned accesses for their configuration
39 * registers. For IOSF versions greater than 1_0, IOSF-SB
40 * agents can use any access (8/16/32 bit aligned) for their
41 * configuration registers
43 static inline void check_pcr_offset_align(uint offset, uint size)
45 const size_t align = PCR_COMMON_IOSF_1_0 ? sizeof(uint32_t) : size;
47 assert(IS_ALIGNED(offset, align));
50 uint pcr_read32(struct udevice *dev, uint offset)
55 /* Ensure the PCR offset is correctly aligned */
56 assert(IS_ALIGNED(offset, sizeof(uint32_t)));
58 ptr = _pcr_reg_address(dev, offset);
65 uint pcr_read16(struct udevice *dev, uint offset)
67 /* Ensure the PCR offset is correctly aligned */
68 check_pcr_offset_align(offset, sizeof(uint16_t));
70 return readw(_pcr_reg_address(dev, offset));
73 uint pcr_read8(struct udevice *dev, uint offset)
75 /* Ensure the PCR offset is correctly aligned */
76 check_pcr_offset_align(offset, sizeof(uint8_t));
78 return readb(_pcr_reg_address(dev, offset));
82 * After every write one needs to perform a read an innocuous register to
83 * ensure the writes are completed for certain ports. This is done for
84 * all ports so that the callers don't need the per-port knowledge for
87 static void write_completion(struct udevice *dev, uint offset)
89 readl(_pcr_reg_address(dev, ALIGN_DOWN(offset, sizeof(uint32_t))));
92 void pcr_write32(struct udevice *dev, uint offset, uint indata)
94 /* Ensure the PCR offset is correctly aligned */
95 assert(IS_ALIGNED(offset, sizeof(indata)));
97 writel(indata, _pcr_reg_address(dev, offset));
98 /* Ensure the writes complete */
99 write_completion(dev, offset);
102 void pcr_write16(struct udevice *dev, uint offset, uint indata)
104 /* Ensure the PCR offset is correctly aligned */
105 check_pcr_offset_align(offset, sizeof(uint16_t));
107 writew(indata, _pcr_reg_address(dev, offset));
108 /* Ensure the writes complete */
109 write_completion(dev, offset);
112 void pcr_write8(struct udevice *dev, uint offset, uint indata)
114 /* Ensure the PCR offset is correctly aligned */
115 check_pcr_offset_align(offset, sizeof(uint8_t));
117 writeb(indata, _pcr_reg_address(dev, offset));
118 /* Ensure the writes complete */
119 write_completion(dev, offset);
122 void pcr_clrsetbits32(struct udevice *dev, uint offset, uint clr, uint set)
126 data32 = pcr_read32(dev, offset);
129 pcr_write32(dev, offset, data32);
132 void pcr_clrsetbits16(struct udevice *dev, uint offset, uint clr, uint set)
136 data16 = pcr_read16(dev, offset);
139 pcr_write16(dev, offset, data16);
142 void pcr_clrsetbits8(struct udevice *dev, uint offset, uint clr, uint set)
146 data8 = pcr_read8(dev, offset);
149 pcr_write8(dev, offset, data8);
152 int p2sb_get_port_id(struct udevice *dev)
154 struct p2sb_child_platdata *pplat = dev_get_parent_platdata(dev);
159 int p2sb_set_port_id(struct udevice *dev, int portid)
161 struct udevice *ps2b;
162 struct p2sb_child_platdata *pplat;
164 if (!CONFIG_IS_ENABLED(OF_PLATDATA))
167 uclass_find_first_device(UCLASS_P2SB, &ps2b);
173 * We must allocate this, since when the device was bound it did not
175 * TODO(sjg@chromium.org): Add a parent pointer to child devices in dtoc
177 dev->parent_platdata = malloc(sizeof(*pplat));
178 if (!dev->parent_platdata)
180 pplat = dev_get_parent_platdata(dev);
186 static int p2sb_child_post_bind(struct udevice *dev)
188 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
189 struct p2sb_child_platdata *pplat = dev_get_parent_platdata(dev);
193 ret = dev_read_u32(dev, "intel,p2sb-port-id", &pid);
202 static int p2sb_post_bind(struct udevice *dev)
204 if (spl_phase() > PHASE_TPL && !CONFIG_IS_ENABLED(OF_PLATDATA))
205 return dm_scan_fdt_dev(dev);
210 UCLASS_DRIVER(p2sb) = {
213 .per_device_auto_alloc_size = sizeof(struct p2sb_uc_priv),
214 .post_bind = p2sb_post_bind,
215 .child_post_bind = p2sb_child_post_bind,
216 .per_child_platdata_auto_alloc_size =
217 sizeof(struct p2sb_child_platdata),