Changeset View
Changeset View
Standalone View
Standalone View
sys/dev/bhnd/cores/chipc/chipc_private.h
| Show First 20 Lines • Show All 49 Lines • ▼ Show 20 Lines | |||||
| struct chipc_caps; | struct chipc_caps; | ||||
| struct chipc_region; | struct chipc_region; | ||||
| struct chipc_softc; | struct chipc_softc; | ||||
| int chipc_init_child_resource(struct resource *r, | int chipc_init_child_resource(struct resource *r, | ||||
| struct resource *parent, | struct resource *parent, | ||||
| bhnd_size_t offset, bhnd_size_t size); | bhnd_size_t offset, bhnd_size_t size); | ||||
| int chipc_set_resource(struct chipc_softc *sc, | |||||
| device_t child, int type, int rid, | |||||
| rman_res_t start, rman_res_t count, u_int port, | |||||
| u_int region); | |||||
| struct chipc_region *chipc_alloc_region(struct chipc_softc *sc, | struct chipc_region *chipc_alloc_region(struct chipc_softc *sc, | ||||
| bhnd_port_type type, u_int port, | bhnd_port_type type, u_int port, | ||||
| u_int region); | u_int region); | ||||
| void chipc_free_region(struct chipc_softc *sc, | void chipc_free_region(struct chipc_softc *sc, | ||||
| struct chipc_region *cr); | struct chipc_region *cr); | ||||
| struct chipc_region *chipc_find_region(struct chipc_softc *sc, | struct chipc_region *chipc_find_region(struct chipc_softc *sc, | ||||
| rman_res_t start, rman_res_t end); | rman_res_t start, rman_res_t end); | ||||
| struct chipc_region *chipc_find_region_by_rid(struct chipc_softc *sc, | struct chipc_region *chipc_find_region_by_rid(struct chipc_softc *sc, | ||||
| Show All 35 Lines | |||||