HomeSort by: relevance | last modified time | path
    Searched defs:uart_base (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/arch/riscv/fdt/
riscv_platform.c 65 bus_addr_t uart_base; local in function:riscv_platform_devmap
71 if (fdtbus_get_reg(phandle, 0, &uart_base, NULL) != 0)
74 devmap_uart[0].pd_pa = DEVMAP_ALIGN(uart_base);
  /src/sys/arch/arm/fdt/
arm_platform.c 78 #define ARM_PTOV(p) (((p) - DEVMAP_ALIGN(uart_base)) + KERNEL_IO_VBASE)
84 bus_addr_t uart_base = CONSADDR; local in function:plcom_platform_early_putchar
87 (volatile uint32_t *)ARM_PTOV(uart_base):
88 (volatile uint32_t *)uart_base;
128 bus_addr_t uart_base; local in function:arm_platform_devmap
129 if (fdtbus_get_reg(phandle, 0, &uart_base, NULL) != 0)
132 devmap_uart[0].pd_pa = DEVMAP_ALIGN(uart_base);
  /src/sys/arch/arm/apple/
apple_platform.c 120 bus_addr_t uart_base; local in function:apple_platform_devmap
127 if (phandle > 0 && fdtbus_get_reg(phandle, 0, &uart_base, NULL) == 0) {
128 devmap[devmap_index].pd_pa = DEVMAP_ALIGN(uart_base);

Completed in 12 milliseconds