Home | History | Annotate | Download | only in at91

Lines Matching refs:pid

87 	void (*peripheral_clock)(int pid, int enable);
90 at91pio_port (*pio_port)(int pid);
91 uint32_t (*gpio_mask)(int pid);
95 void *(*intr_establish)(int pid, int ipl, int type, int (*ih_func)(void *), void *arg);
101 const char *(*peripheral_name)(int pid);
103 device_t (*found_func)(device_t, bus_addr_t, int pid));
130 at91_peripheral_clock(int pid, int enable)
132 return (*at91bus_tag->peripheral_clock)(pid, enable);
136 at91_peripheral_name(int pid)
138 return (*at91bus_tag->peripheral_name)(pid);
142 at91_pio_port(int pid)
144 return (*at91bus_tag->pio_port)(pid);
148 at91_gpio_mask(int pid)
150 return (*at91bus_tag->gpio_mask)(pid);
160 at91_intr_establish(int pid, int ipl, int type,
163 return (*at91bus_tag->intr_establish)(pid, ipl, type, ih_func, ih_arg);
180 device_t (*found_func)(device_t, bus_addr_t, int pid))