Lines Matching refs:osext

55 HPT_U8  os_pci_readb (void *osext, HPT_U8 offset)  in os_pci_readb()  argument
57 return pci_read_config(((PHBA)osext)->pcidev, offset, 1); in os_pci_readb()
60 HPT_U16 os_pci_readw (void *osext, HPT_U8 offset) in os_pci_readw() argument
62 return pci_read_config(((PHBA)osext)->pcidev, offset, 2); in os_pci_readw()
65 HPT_U32 os_pci_readl (void *osext, HPT_U8 offset) in os_pci_readl() argument
67 return pci_read_config(((PHBA)osext)->pcidev, offset, 4); in os_pci_readl()
70 void os_pci_writeb (void *osext, HPT_U8 offset, HPT_U8 value) in os_pci_writeb() argument
72 pci_write_config(((PHBA)osext)->pcidev, offset, value, 1); in os_pci_writeb()
75 void os_pci_writew (void *osext, HPT_U8 offset, HPT_U16 value) in os_pci_writew() argument
77 pci_write_config(((PHBA)osext)->pcidev, offset, value, 2); in os_pci_writew()
80 void os_pci_writel (void *osext, HPT_U8 offset, HPT_U32 value) in os_pci_writel() argument
82 pci_write_config(((PHBA)osext)->pcidev, offset, value, 4); in os_pci_writel()
86 void *osext, in os_map_pci_bar() argument
92 PHBA hba = (PHBA)osext; in os_map_pci_bar()
108 void os_unmap_pci_bar(void *osext, void *base) in os_unmap_pci_bar() argument
110 PHBA hba = (PHBA)osext; in os_unmap_pci_bar()
123 void freelist_reserve(struct freelist *list, void *osext, HPT_UINT size, HPT_UINT count) in freelist_reserve() argument
125 PVBUS_EXT vbus_ext = osext; in freelist_reserve()
128 vbus_ext = ((PHBA)osext)->vbus_ext; in freelist_reserve()
162 void freelist_reserve_dma(struct freelist *list, void *osext, HPT_UINT size, HPT_UINT alignment, HP… in freelist_reserve_dma() argument
164 PVBUS_EXT vbus_ext = osext; in freelist_reserve_dma()
167 vbus_ext = ((PHBA)osext)->vbus_ext; in freelist_reserve_dma()
218 void os_request_timer(void * osext, HPT_U32 interval) in os_request_timer() argument
220 PVBUS_EXT vbus_ext = osext; in os_request_timer()
233 void os_schedule_task(void *osext, OSM_TASK *task) in os_schedule_task() argument
235 PVBUS_EXT vbus_ext = osext; in os_schedule_task()
251 int os_revalidate_device(void *osext, int id) in os_revalidate_device() argument
257 int os_query_remove_device(void *osext, int id) in os_query_remove_device() argument
262 HPT_U8 os_get_vbus_seq(void *osext) in os_get_vbus_seq() argument
264 return ((PVBUS_EXT)osext)->sim->path_id; in os_get_vbus_seq()