Lines Matching refs:pd
89 struct imx_uart_data *pd = in chip_to_base() local
92 return io_pa_or_va(&pd->base, USIZE); in chip_to_base()
134 void imx_uart_init(struct imx_uart_data *pd, paddr_t base) in imx_uart_init() argument
136 pd->base.pa = base; in imx_uart_init()
137 pd->chip.ops = &imx_uart_ops; in imx_uart_init()
148 struct imx_uart_data *pd = calloc(1, sizeof(*pd)); in imx_uart_dev_alloc() local
150 if (!pd) in imx_uart_dev_alloc()
153 return &pd->chip; in imx_uart_dev_alloc()
159 struct imx_uart_data *pd = in imx_uart_dev_init() local
172 imx_uart_init(pd, pbase); in imx_uart_dev_init()
179 struct imx_uart_data *pd = in imx_uart_dev_free() local
182 free(pd); in imx_uart_dev_free()