Searched refs:gbasep (Results 1 - 7 of 7) sorted by relevance

/u-boot/drivers/pch/
H A Dpch-uclass.c34 int pch_get_gpio_base(struct udevice *dev, u32 *gbasep) argument
38 *gbasep = 0;
42 return ops->get_gpio_base(dev, gbasep);
H A Dpch9.c27 static int pch9_get_gpio_base(struct udevice *dev, u32 *gbasep) argument
53 *gbasep = base & 1 ? base & ~3 : base & ~15;
H A Dpch7.c41 static int pch7_get_gpio_base(struct udevice *dev, u32 *gbasep) argument
67 *gbasep = base & 1 ? base & ~3 : base & ~15;
H A Dsandbox_pch.c37 static int sandbox_pch_get_gpio_base(struct udevice *dev, u32 *gbasep) argument
39 *gbasep = 0x20;
/u-boot/include/
H A Dpch.h74 * @gbasep: Returns address of GPIO base if available, else 0
77 int (*get_gpio_base)(struct udevice *dev, u32 *gbasep);
131 * @gbasep: Returns address of GPIO base if available, else 0
134 int pch_get_gpio_base(struct udevice *dev, u32 *gbasep);
/u-boot/arch/x86/cpu/ivybridge/
H A Dbd82x6x.c195 static int bd82x6x_get_gpio_base(struct udevice *dev, u32 *gbasep) argument
221 *gbasep = base & 1 ? base & ~3 : base & ~15;
/u-boot/arch/x86/cpu/broadwell/
H A Dpch.c634 static int broadwell_get_gpio_base(struct udevice *dev, u32 *gbasep) argument
636 dm_pci_read_config32(dev, GPIO_BASE, gbasep);
637 *gbasep &= PCI_BASE_ADDRESS_IO_MASK;

Completed in 49 milliseconds