Home
last modified time | relevance | path

Searched refs:driver (Results 1 – 25 of 148) sorted by relevance

123456

/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/
H A DdrvUSB.c252 struct usb_driver * driver = to_usb_driver(dev->driver); in usb_probe_interface() local
258 if (!driver->probe) in usb_probe_interface()
261 id = usb_match_id (intf, driver->id_table); in usb_probe_interface()
264 down (&driver->serialize); in usb_probe_interface()
265 error = driver->probe (intf, id); in usb_probe_interface()
266 up (&driver->serialize); in usb_probe_interface()
269 intf->driver = driver; in usb_probe_interface()
373 struct usb_driver *driver = to_usb_driver(dev->driver); in usb_unbind_interface() local
377 down(&driver->serialize); in usb_unbind_interface()
382 if (intf->driver && intf->driver->disconnect) in usb_unbind_interface()
[all …]
H A DdrvEhciHcd.c9211 int usb_hcd_cpe_ehci_probe (struct hc_driver *driver, in usb_hcd_cpe_ehci_probe() argument
9239 hcd = driver->hcd_alloc(); in usb_hcd_cpe_ehci_probe()
9247 hcd->driver = (struct hc_driver *) driver; in usb_hcd_cpe_ehci_probe()
9250 memcpy((char*)hcd,(char*)driver,24); in usb_hcd_cpe_ehci_probe()
9267 if (driver->reset && (retval = driver->reset (hcd)) < 0) { in usb_hcd_cpe_ehci_probe()
9324 if ((retval = driver->start (hcd)) < 0) in usb_hcd_cpe_ehci_probe()
9337 driver->hcd_free(hcd); in usb_hcd_cpe_ehci_probe()
9357 hcd->driver->stop (hcd); in usb_hcd_cpe_ehci_remove()
9364 hcd->driver->hcd_free (hcd); in usb_hcd_cpe_ehci_remove()
9385 retval = hcd->driver->suspend (hcd, 0); in usb_hcd_cpe_ehci_suspend()
[all …]
H A DdrvHCD.c371 if (hcd->driver->flags & HCD_USB2) in rh_call_control()
373 else if (hcd->driver->flags & HCD_USB11) in rh_call_control()
410 if (hcd->driver->flags & HCD_USB2) { in rh_call_control()
517 urb->status = hcd->driver->hub_control (hcd, in rh_call_control()
656 length = hcd->driver->hub_status_data (hcd, (char*) urb->transfer_buffer); in rh_report_status()
659 length = hcd->driver->hub_status_data (hcd, urb->transfer_buffer); in rh_report_status()
767 length = hcd->driver->hub_status_data(hcd, buffer); in usb_hcd_poll_rh_status()
1615 return (hcd->driver->urb_enqueue (hcd, urb, mem_flags)); in hcd_submit_urb()
1754 status = hcd->driver->urb_enqueue (hcd, urb, mem_flags); in hcd_submit_urb()
1774 return hcd->driver->get_frame_number (hcd); in hcd_get_frame_number()
[all …]
H A DdrvEhciHcd_2.c140 int usb_hcd_cpe_ehci_probe_Port2(struct hc_driver *driver, in usb_hcd_cpe_ehci_probe_Port2() argument
173 hcd = driver->hcd_alloc(); in usb_hcd_cpe_ehci_probe_Port2()
181 hcd->driver = (struct hc_driver *) driver; in usb_hcd_cpe_ehci_probe_Port2()
184 memcpy((char*)hcd,(char*)driver,24); in usb_hcd_cpe_ehci_probe_Port2()
201 if (driver->reset && (retval = driver->reset (hcd)) < 0) { in usb_hcd_cpe_ehci_probe_Port2()
253 if ((retval = driver->start (hcd)) < 0) in usb_hcd_cpe_ehci_probe_Port2()
266 driver->hcd_free(hcd); in usb_hcd_cpe_ehci_probe_Port2()
H A DdrvBus.c92 dev->bus_id,dev->driver->name); in device_bind_driver()
93 list_add_tail(&dev->driver_list,&dev->driver->devices); in device_bind_driver()
103 dev->driver = drv; in bus_match()
107 dev->driver = NULL; in bus_match()
126 if (dev->driver) { in device_attach()
158 if (!dev->driver) { in driver_attach()
168 struct device_driver * drv = dev->driver; in device_release_driver()
174 dev->driver = NULL; in device_release_driver()
H A DdrvHCD.h116 struct hc_driver *driver; member
184 struct otg_driver *driver; member
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/
H A DdrvUSB.c212 struct usb_driver * pUdriver = get_usb_driver(pDev->driver); in ms_usb_probe_interface()
226 pUintf->driver = pUdriver; in ms_usb_probe_interface()
234 if (iface->driver && iface->driver != pUdriver) in ms_usb_driver_release_interface()
238 iface->driver = NULL; in ms_usb_driver_release_interface()
244 iface->driver = NULL; in ms_usb_driver_release_interface()
250 struct usb_driver *pUdriver = get_usb_driver(pDev->driver); in ms_usb_unbind_interface()
254 if (pUintf->driver && pUintf->driver->discon_func) in ms_usb_unbind_interface()
255 pUintf->driver->discon_func(pUintf); in ms_usb_unbind_interface()
266 memcpy(n_driver->driver.name, n_driver->name, sizeof(n_driver->name)); in ms_usb_register()
267 n_driver->driver.bus = &usb_bus_type; in ms_usb_register()
[all …]
H A DdrvBus.c97 ms_gdev->bus_id,ms_gdev->driver->name); in ms_device_bind_driver()
98 ms_insert_list_before(&ms_gdev->driver_list,&ms_gdev->driver->devices); in ms_device_bind_driver()
116 ms_gdev->driver = ms_drv; in ms_bus_match()
122 ms_gdev->driver = NULL; in ms_bus_match()
147 if (ms_gdev->driver) in ms_device_attach()
188 if (!ms_gdev->driver) in ms_driver_attach()
204 struct device_driver * ms_drv = ms_gdev->driver; in ms_device_release_driver()
211 ms_gdev->driver = NULL; in ms_device_release_driver()
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/include/
H A DdrvUSB.h126 struct usb_driver *driver; member
287 extern S32 usb_driver_claim_interface(struct usb_driver *driver,
290 extern void usb_driver_release_interface(struct usb_driver *driver,
363 struct device_driver driver; member
376 return (struct usb_driver *)( (char *)__mptr - (char *)offsetof(struct usb_driver,driver) ); in to_usb_driver()
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/include/
H A DdrvUSBHost.h117 struct usb_driver *driver; member
247 struct device_driver driver; member
254 return (struct usb_driver *)( (char *)__mptr - (char *)offsetof(struct usb_driver,driver) ); in get_usb_driver()
/utopia/UTPA2-700.0.x/modules/wble/drv/wble/
H A DCus_Makefile32 OUTLIB = $(TRUNK)/../../../../../DAILEO/Yoga/Chakra2/core/driver/sc/$(CHIP)/
33 IF_H_DIR = $(TRUNK)/../../../../../DAILEO/Yoga/Chakra2/core/driver/interface
/utopia/UTPA2-700.0.x/modules/flash/drv/flash/serial/
H A DRelease Note.txt17 … This package includes the driver for the serial flash in the supported mstar DTV/SET-TOP BOX syst…
/utopia/UTPA2-700.0.x/projects/build/
H A DKconfig532 Select If the Linux Kernel version is 3.1.10 used for kernel driver.
538 Select If the Linux Kernel version is 3.10.23 used for kernel driver.
544 Select If the Linux Kernel version is 3.10.40 used for kernel driver.
550 Select If the Linux Kernel version is 3.10.86 used for kernel driver.
/utopia/UTPA2-700.0.x/modules/miu/drv/miu/
H A DKconfig7 Enable compilation option for driver MIU
/utopia/UTPA2-700.0.x/modules/graphic/drv/gop/
H A DKconfig7 Enable compilation option for driver GOP
/utopia/UTPA2-700.0.x/modules/ve/drv/ve/
H A DKconfig7 Enable compilation option for driver VE
/utopia/UTPA2-700.0.x/modules/dmx/drv/tsp3/
H A DKconfig7 Enable compilation option for driver TSP3
/utopia/UTPA2-700.0.x/modules/njpd/drv/njpd_ex/
H A DKconfig7 Enable compilation option for driver NJPD_EX
/utopia/UTPA2-700.0.x/modules/vdec_v2/drv/mvd_ex/
H A DKconfig7 Enable compilation option for driver MVD_EX
/utopia/UTPA2-700.0.x/modules/hdmi/drv/hdmitx/
H A DKconfig7 Enable compilation option for driver HDMITX
/utopia/UTPA2-700.0.x/modules/audio/drv/audio/
H A DKconfig7 Enable compilation option for driver AUDIO
/utopia/UTPA2-700.0.x/modules/rtc/drv/rtc/
H A DKconfig7 Enable compilation option for driver RTC
/utopia/UTPA2-700.0.x/modules/hdmi/drv/hdcp/
H A DKconfig7 Enable compilation option for driver HDCP
/utopia/UTPA2-700.0.x/modules/bdma/drv/bdma/
H A DKconfig7 Enable compilation option for driver BDMA
/utopia/UTPA2-700.0.x/modules/demodulator/drv/dvb_extdemod/
H A DKconfig7 Enable compilation option for driver MSB1233

123456