Searched defs:hdev_obj (Results 1 - 19 of 19) sorted by relevance

/drivers/staging/tidspbridge/pmgr/
H A Dchnl.c54 struct dev_object *hdev_obj,
80 status = dev_get_chnl_mgr(hdev_obj, &hchnl_mgr);
88 dev_get_intf_fxns(hdev_obj, &intf_fxns);
90 status = (*intf_fxns->chnl_create) (&hchnl_mgr, hdev_obj,
53 chnl_create(struct chnl_mgr **channel_mgr, struct dev_object *hdev_obj, const struct chnl_mgrattrs *mgr_attrts) argument
H A Dio.c45 int io_create(struct io_mgr **io_man, struct dev_object *hdev_obj, argument
67 dev_get_intf_fxns(hdev_obj, &intf_fxns);
70 status = (*intf_fxns->io_create) (&hio_mgr, hdev_obj,
76 pio_mgr->dev_obj = hdev_obj;
H A Dmsg.c49 struct dev_object *hdev_obj, msg_onexit msg_callback)
59 DBC_REQUIRE(hdev_obj != NULL);
63 dev_get_intf_fxns(hdev_obj, &intf_fxns);
67 (*intf_fxns->msg_create) (&hmsg_mgr, hdev_obj, msg_callback);
48 msg_create(struct msg_mgr **msg_man, struct dev_object *hdev_obj, msg_onexit msg_callback) argument
H A Ddmm.c121 struct dev_object *hdev_obj,
203 struct dev_object *hdev_obj; local
208 status = proc_get_dev_object(hprocessor, &hdev_obj);
210 hdev_obj = dev_get_first(); /* default */
213 status = dev_get_dmm_mgr(hdev_obj, dmm_manager);
120 dmm_create(struct dmm_object **dmm_manager, struct dev_object *hdev_obj, const struct dmm_mgrattrs *mgr_attrts) argument
H A Dcmm.c241 struct dev_object *hdev_obj,
393 struct dev_object *hdev_obj; local
398 status = proc_get_dev_object(hprocessor, &hdev_obj);
400 hdev_obj = dev_get_first(); /* default */
403 status = dev_get_cmm_mgr(hdev_obj, ph_cmm_mgr);
240 cmm_create(struct cmm_object **ph_cmm_mgr, struct dev_object *hdev_obj, const struct cmm_mgrattrs *mgr_attrts) argument
H A Ddev.c285 int dev_create2(struct dev_object *hdev_obj) argument
288 struct dev_object *dev_obj = hdev_obj;
291 DBC_REQUIRE(hdev_obj);
295 status = node_create_mgr(&dev_obj->node_mgr, hdev_obj);
309 int dev_destroy2(struct dev_object *hdev_obj) argument
312 struct dev_object *dev_obj = hdev_obj;
315 DBC_REQUIRE(hdev_obj);
335 int dev_destroy_device(struct dev_object *hdev_obj) argument
338 struct dev_object *dev_obj = hdev_obj;
342 if (hdev_obj) {
412 dev_get_chnl_mgr(struct dev_object *hdev_obj, struct chnl_mgr **mgr) argument
438 dev_get_cmm_mgr(struct dev_object *hdev_obj, struct cmm_object **mgr) argument
464 dev_get_dmm_mgr(struct dev_object *hdev_obj, struct dmm_object **mgr) argument
489 dev_get_cod_mgr(struct dev_object *hdev_obj, struct cod_manager **cod_mgr) argument
512 dev_get_deh_mgr(struct dev_object *hdev_obj, struct deh_mgr **deh_manager) argument
534 dev_get_dev_node(struct dev_object *hdev_obj, struct cfg_devnode **dev_nde) argument
575 dev_get_intf_fxns(struct dev_object *hdev_obj, struct bridge_drv_interface **if_fxns) argument
598 dev_get_io_mgr(struct dev_object *hdev_obj, struct io_mgr **io_man) argument
624 dev_get_next(struct dev_object *hdev_obj) argument
639 dev_get_msg_mgr(struct dev_object *hdev_obj, struct msg_mgr **msg_man) argument
653 dev_get_node_manager(struct dev_object *hdev_obj, struct node_mgr **node_man) argument
676 dev_get_symbol(struct dev_object *hdev_obj, const char *str_sym, u32 * pul_value) argument
703 dev_get_bridge_context(struct dev_object *hdev_obj, struct bridge_dev_context **phbridge_context) argument
803 struct dev_object *hdev_obj; /* handle to device object */ local
838 dev_set_chnl_mgr(struct dev_object *hdev_obj, struct chnl_mgr *hmgr) argument
860 dev_set_msg_mgr(struct dev_object *hdev_obj, struct msg_mgr *hmgr) argument
875 struct dev_object *hdev_obj = NULL; /* handle to 'Bridge Device */ local
974 dev_insert_proc_object(struct dev_object *hdev_obj, u32 proc_obj, bool *already_attached) argument
1014 dev_remove_proc_object(struct dev_object *hdev_obj, u32 proc_obj) argument
[all...]
H A Ddspapi.c381 struct dev_object *hdev_obj; local
390 for (hdev_obj = dev_get_first(); hdev_obj != NULL;
391 hdev_obj = dev_get_next(hdev_obj)) {
392 if (dev_get_dev_node(hdev_obj, &dev_node))
395 if (dev_get_dev_type(hdev_obj, &dev_type))
402 proc_auto_start(dev_node, hdev_obj);
/drivers/staging/tidspbridge/rmgr/
H A Dpwr.c44 struct dev_object *hdev_obj = NULL; local
48 for (hdev_obj = (struct dev_object *)drv_get_first_dev_object();
49 hdev_obj != NULL;
50 hdev_obj =
51 (struct dev_object *)drv_get_next_dev_object((u32) hdev_obj)) {
52 if (dev_get_bridge_context(hdev_obj,
57 if (dev_get_intf_fxns(hdev_obj,
87 struct dev_object *hdev_obj = NULL; local
90 for (hdev_obj = (struct dev_object *)drv_get_first_dev_object();
91 hdev_obj !
118 struct dev_object *hdev_obj = NULL; local
152 struct dev_object *hdev_obj = NULL; local
[all...]
H A Dmgr.c201 struct dev_object *hdev_obj; local
224 status = drv_get_dev_object(processor_id, hdrv_obj, &hdev_obj);
226 status = dev_get_dev_type(hdev_obj, (u8 *) &dev_type);
227 status = dev_get_dev_node(hdev_obj, &dev_node);
H A Ddisp.c89 struct dev_object *hdev_obj,
102 DBC_REQUIRE(hdev_obj != NULL);
111 disp_obj->dev_obj = hdev_obj;
115 status = dev_get_chnl_mgr(hdev_obj, &(disp_obj->chnl_mgr));
117 (void)dev_get_intf_fxns(hdev_obj, &intf_fxns);
127 status = dev_get_dev_type(hdev_obj, &dev_type);
88 disp_create(struct disp_object **dispatch_obj, struct dev_object *hdev_obj, const struct disp_attr *disp_attrs) argument
H A Ddrv.c474 u32 drv_get_next_dev_object(u32 hdev_obj) argument
484 curr = (struct list_head *)hdev_obj;
551 struct dev_object *hdev_obj)
556 DBC_REQUIRE(hdev_obj != NULL);
559 list_add_tail((struct list_head *)hdev_obj, &pdrv_object->dev_list);
571 struct dev_object *hdev_obj)
579 DBC_REQUIRE(hdev_obj != NULL);
586 if ((struct dev_object *)cur_elem == hdev_obj) {
550 drv_insert_dev_object(struct drv_object *driver_obj, struct dev_object *hdev_obj) argument
570 drv_remove_dev_object(struct drv_object *driver_obj, struct dev_object *hdev_obj) argument
H A Dnldr.c410 struct dev_object *hdev_obj,
430 DBC_REQUIRE(hdev_obj != NULL);
438 nldr_obj->dev_obj = hdev_obj;
440 dev_get_cod_mgr(hdev_obj, &cod_mgr);
409 nldr_create(struct nldr_object **nldr, struct dev_object *hdev_obj, const struct nldr_attrs *pattrs) argument
H A Dproc.c277 struct dev_object *hdev_obj; local
303 status = drv_get_dev_object(processor_id, hdrv_obj, &hdev_obj);
306 status = dev_get_dev_type(hdev_obj, &dev_type);
318 p_proc_object->dev_obj = hdev_obj;
331 status = dev_get_intf_fxns(hdev_obj, &p_proc_object->intf_fxns);
333 status = dev_get_bridge_context(hdev_obj,
393 struct dev_object *hdev_obj,
400 dev_get_dev_type(hdev_obj, (u8 *) &dev_type);
429 * hdev_obj: Handle to the Device
434 * hdev_obj !
392 get_exec_file(struct cfg_devnode *dev_node_obj, struct dev_object *hdev_obj, u32 size, char *exec_file) argument
437 proc_auto_start(struct cfg_devnode *dev_node_obj, struct dev_object *hdev_obj) argument
[all...]
H A Dnode.c260 struct dev_object *hdev_obj);
302 struct dev_object *hdev_obj; local
341 status = proc_get_dev_object(hprocessor, &hdev_obj);
343 status = dev_get_node_manager(hdev_obj, &hnode_mgr);
352 status = dev_get_bridge_context(hdev_obj, &pbridge_context);
1284 struct dev_object *hdev_obj)
1296 DBC_REQUIRE(hdev_obj != NULL);
1304 node_mgr_obj->dev_obj = hdev_obj;
1316 dev_get_dev_type(hdev_obj, &dev_type);
1322 status = get_proc_props(node_mgr_obj, hdev_obj);
1283 node_create_mgr(struct node_mgr **node_man, struct dev_object *hdev_obj) argument
2890 get_proc_props(struct node_mgr *hnode_mgr, struct dev_object *hdev_obj) argument
2936 struct dev_object *hdev_obj; local
[all...]
/drivers/staging/tidspbridge/core/
H A Due_deh.c86 struct dev_object *hdev_obj)
96 dev_get_bridge_context(hdev_obj, &hbridge_context);
85 bridge_deh_create(struct deh_mgr **ret_deh, struct dev_object *hdev_obj) argument
H A Dmsg_sm.c51 struct dev_object *hdev_obj,
58 if (!msg_man || !msg_callback || !hdev_obj)
61 dev_get_io_mgr(hdev_obj, &hio_mgr);
50 bridge_msg_create(struct msg_mgr **msg_man, struct dev_object *hdev_obj, msg_onexit msg_callback) argument
H A Dchnl_sm.c354 struct dev_object *hdev_obj,
391 chnl_mgr_obj->dev_obj = hdev_obj;
353 bridge_chnl_create(struct chnl_mgr **channel_mgr, struct dev_object *hdev_obj, const struct chnl_mgrattrs *mgr_attrts) argument
H A Dtiomap3430.c120 struct dev_object *hdev_obj,
746 struct dev_object *hdev_obj,
875 dev_context->dev_obj = hdev_obj;
744 bridge_dev_create(struct bridge_dev_context **dev_cntxt, struct dev_object *hdev_obj, struct cfg_hostres *config_param) argument
H A Dio_sm.c168 struct dev_object *hdev_obj,
183 dev_get_chnl_mgr(hdev_obj, &hchnl_mgr);
192 dev_get_bridge_context(hdev_obj, &hbridge_context);
196 dev_get_dev_type(hdev_obj, &dev_type);
217 if (dev_get_dev_node(hdev_obj, &dev_node_obj)) {
167 bridge_io_create(struct io_mgr **io_man, struct dev_object *hdev_obj, const struct io_attrs *mgr_attrts) argument

Completed in 84 milliseconds