Searched refs:gbasep (Results 1 – 7 of 7) sorted by relevance
/openbmc/u-boot/drivers/pch/ |
H A D | pch-uclass.c | 32 int pch_get_gpio_base(struct udevice *dev, u32 *gbasep) in pch_get_gpio_base() argument 36 *gbasep = 0; in pch_get_gpio_base() 40 return ops->get_gpio_base(dev, gbasep); in pch_get_gpio_base()
|
H A D | pch9.c | 24 static int pch9_get_gpio_base(struct udevice *dev, u32 *gbasep) in pch9_get_gpio_base() argument 50 *gbasep = base & 1 ? base & ~3 : base & ~15; in pch9_get_gpio_base()
|
H A D | pch7.c | 40 static int pch7_get_gpio_base(struct udevice *dev, u32 *gbasep) in pch7_get_gpio_base() argument 66 *gbasep = base & 1 ? base & ~3 : base & ~15; in pch7_get_gpio_base()
|
H A D | sandbox_pch.c | 37 static int sandbox_pch_get_gpio_base(struct udevice *dev, u32 *gbasep) in sandbox_pch_get_gpio_base() argument 39 *gbasep = 0x20; in sandbox_pch_get_gpio_base()
|
/openbmc/u-boot/include/ |
H A D | pch.h | 58 int (*get_gpio_base)(struct udevice *dev, u32 *gbasep); 115 int pch_get_gpio_base(struct udevice *dev, u32 *gbasep);
|
/openbmc/u-boot/arch/x86/cpu/ivybridge/ |
H A D | bd82x6x.c | 188 static int bd82x6x_get_gpio_base(struct udevice *dev, u32 *gbasep) in bd82x6x_get_gpio_base() argument 214 *gbasep = base & 1 ? base & ~3 : base & ~15; in bd82x6x_get_gpio_base()
|
/openbmc/u-boot/arch/x86/cpu/broadwell/ |
H A D | pch.c | 625 static int broadwell_get_gpio_base(struct udevice *dev, u32 *gbasep) in broadwell_get_gpio_base() argument 627 dm_pci_read_config32(dev, GPIO_BASE, gbasep); in broadwell_get_gpio_base() 628 *gbasep &= PCI_BASE_ADDRESS_IO_MASK; in broadwell_get_gpio_base()
|