Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Enable the support for a file interface on the HID driver for | n_hibma | 1999-05-09 | 1 | -1/+22 |
| | | | | | | easy testing of the HID reports that come back. Submitted by: MAEKAWA Masahide <bishop@rr.iij4u.or.jp> | ||||
* | Added Thrustmaster Fusion Digital Gamepad | n_hibma | 1999-05-09 | 2 | -0/+16 |
| | |||||
* | Unconfuse DEV_MODULE() and DEV_DRIVER_MODULE() about the difference between | phk | 1999-05-09 | 3 | -3/+3 |
| | | | | a major number for a dev_t. | ||||
* | Move the declaration of the interrupt type from the driver structure | dfr | 1999-05-08 | 4 | -7/+5 |
| | | | | to the BUS_SETUP_INTR call. | ||||
* | Trivial tweak to avoid a warning. | peter | 1999-05-08 | 1 | -0/+2 |
| | |||||
* | Fix some of the places where too much inside knowledge about major/minor | phk | 1999-05-08 | 1 | -2/+2 |
| | | | | layout and dev_t structure is being (ab)used. | ||||
* | Continue where Julian left off in July 1998: | phk | 1999-05-07 | 3 | -6/+6 |
| | | | | | | | | | | | | | | Virtualize bdevsw[] from cdevsw. bdevsw() is now an (inline) function. Join CDEV_MODULE and BDEV_MODULE to DEV_MODULE (please pay attention to the order of the cmaj/bmaj arguments!) Join CDEV_DRIVER_MODULE and BDEV_DRIVER_MODULE to DEV_DRIVER_MODULE (ditto!) (Next step will be to convert all bdev dev_t's to cdev dev_t's before they get to do any damage^H^H^H^H^H^Hwork in the kernel.) | ||||
* | Take out calls to cam_sim_set_basexfer_speed(), the base transfer speed is | ken | 1999-05-06 | 1 | -3/+0 |
| | | | | | | now returned in the path inquiry CCB. Submitted by: Nick Hibma <hibma@skylink.it> | ||||
* | Add new member for XPT_PATH_INQ, follows recent changes in | n_hibma | 1999-05-06 | 1 | -0/+1 |
| | | | | version v1.2 of cam_sim.h. | ||||
* | Descriptors can be delivered with short transfers. | n_hibma | 1999-05-03 | 1 | -1/+1 |
| | |||||
* | Add a load of definitions | n_hibma | 1999-05-03 | 1 | -10/+24 |
| | |||||
* | Remove disconnected method | n_hibma | 1999-05-03 | 1 | -8/+1 |
| | |||||
* | Replace UE_GET_IN with UE_GET_DIR | n_hibma | 1999-05-03 | 1 | -14/+9 |
| | | | | Remove freeind of description. Is done by subr_bus.c. | ||||
* | Replace UE_GET_IN with UE_GET_DIR | n_hibma | 1999-05-03 | 1 | -1/+2 |
| | |||||
* | Change '#if UKBD_DEBUG' to '#ifdef...' | n_hibma | 1999-05-03 | 1 | -8/+5 |
| | | | | Remove freeing of description on detach. Is done by subr_bus.c. | ||||
* | Remove double removal of children of a hub. (remove disconnected method) | n_hibma | 1999-05-03 | 1 | -29/+2 |
| | | | | | | This was introduced when merging a patch for the newbus people. And change the debugging flag from USB_DEBUG to UHUB_DEBUG. | ||||
* | Add URL to HID spec | n_hibma | 1999-05-03 | 1 | -1/+5 |
| | |||||
* | Clean up parts of struct shared between NetBSD and FreeBSD | n_hibma | 1999-05-03 | 1 | -4/+3 |
| | |||||
* | Clean up debugging output | n_hibma | 1999-05-03 | 1 | -8/+13 |
| | |||||
* | Add driver for the Iomega Zip 100 drive. | n_hibma | 1999-05-02 | 1 | -0/+848 |
| | |||||
* | Oops. Introduced a typo in one of previous commits. | n_hibma | 1999-05-01 | 1 | -1/+1 |
| | |||||
* | Clean up uhci_intr. Avoid acknowledging mutliple interrupts with | n_hibma | 1999-05-01 | 1 | -26/+27 |
| | | | | multiple writes. | ||||
* | Correct maximum error count in TD initialisation for transfer from 2 to 3. | n_hibma | 1999-05-01 | 1 | -2/+2 |
| | |||||
* | Clean up debugging output, rename printf to DPRINTF and set some | n_hibma | 1999-05-01 | 1 | -38/+29 |
| | | | | debugging levels to more sensible values. | ||||
* | Move the disabling of interrupts right before the allocation of the | n_hibma | 1999-05-01 | 2 | -1/+18 |
| | | | | | | resource. Avoids useless interrupts occurring between the allocation of the interrupt resource and the final initialisation of the kernel. Cause of these interrupts is unknown (a resuming device?). | ||||
* | Z direction was upside down. | n_hibma | 1999-05-01 | 1 | -2/+6 |
| | | | | Submitted By: MAEKAWA Masahide | ||||
* | Added vendor OmniVision and camera | n_hibma | 1999-05-01 | 2 | -0/+16 |
| | |||||
* | Forgot one. | n_hibma | 1999-04-21 | 1 | -1/+1 |
| | | | | | | | | | Original log message: Remove feature creep: STAILQ_REMOVE_HEAD_UNTIL added it for convenience but we can do without it. Obtained from: Peter Wemm | ||||
* | Remove feature creep: STAILQ_REMOVE_HEAD_UNTIL added it for convenience | n_hibma | 1999-04-20 | 2 | -0/+16 |
| | | | | but we can do without it. | ||||
* | 1) Change printf's into DPRINTF. | n_hibma | 1999-04-20 | 2 | -85/+96 |
| | | | | | | | 2) rename variables to be more conclusive. 3) fix a problem in uhci_ii_done. Avoid collecting all the status's of the TD's, we only need to one from the last inactive one. 4) Change the errorcount from 2 to 3 (see UHCI spec.). | ||||
* | Add defines for Mass Storage Bulk-Only and COmmun. Class devices. | n_hibma | 1999-04-20 | 1 | -19/+37 |
| | |||||
* | Enclose .hcidebug in '#ifdef N.HCI' | n_hibma | 1999-04-20 | 1 | -6/+20 |
| | |||||
* | 1) Add Rockfire vendor and gamepad product (MAEKAWA Masahide) | n_hibma | 1999-04-19 | 3 | -20/+73 |
| | | | | | | 2) Sort the list again (Roger Hardiman) 3) Reinstate a piece of code to look for a name for a device if none is found in the device itself. | ||||
* | UHCI_DEBUG should of course be OHCI_DEBUG | n_hibma | 1999-04-17 | 1 | -13/+12 |
| | | | | Reported by: MAEKAWA Masahide <bishop@rr.iij4u.or.jp> | ||||
* | Bring the 'new-bus' to the i386. This extensively changes the way the | peter | 1999-04-16 | 18 | -218/+236 |
| | | | | | | | | | | | | | | | | | | i386 platform boots, it is no longer ISA-centric, and is fully dynamic. Most old drivers compile and run without modification via 'compatability shims' to enable a smoother transition. eisa, isapnp and pccard* are not yet using the new resource manager. Once fully converted, all drivers will be loadable, including PCI and ISA. (Some other changes appear to have snuck in, including a port of Soren's ATA driver to the Alpha. Soren, back this out if you need to.) This is a checkpoint of work-in-progress, but is quite functional. The bulk of the work was done over the last few years by Doug Rabson and Garrett Wollman. Approved by: core | ||||
* | 1) Make debugging more selective. | n_hibma | 1999-04-11 | 18 | -201/+180 |
| | | | | | | | 2) create function usbd_errstr which turns a usbd_status into a sensible error message 3) Change the printf in DPRINTF to logprintf which is a define for log(KERN_DEBUG, x) | ||||
* | Applied patch for ukbd disconnect. Disconnect not fully functional | n_hibma | 1999-04-11 | 1 | -66/+99 |
| | | | | | | yet however. Supplied by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp> | ||||
* | USBD_STALLED bit checking was inconsistent. Mixed use of == and & | n_hibma | 1999-04-11 | 1 | -5/+6 |
| | | | | Patch provided by: Kazutaka YOKOTA | ||||
* | Remove unit from struct. Not used anymore. | n_hibma | 1999-04-11 | 2 | -2/+0 |
| | |||||
* | Reenable the recursive disconnection from a hub. Stop gap solution | n_hibma | 1999-04-11 | 1 | -7/+9 |
| | | | | | | until the newbus version of uhub.c is ready. Submitted by: Kazutaka YOKOTA | ||||
* | Changed pci_config_read() to pci_map_port(). Pointed out by Doug Rabson. | n_hibma | 1999-04-11 | 1 | -2/+5 |
| | |||||
* | 1) Add Lucent USS-720 eval kit | n_hibma | 1999-04-08 | 2 | -2/+18 |
| | | | | 2) Rename Epson printer cable to proper name | ||||
* | 1) Add AKS USB-HASP 0.6 | n_hibma | 1999-04-08 | 2 | -15/+38 |
| | | | | | 2) Rename Lucent -> Epson (Undoes previous commit, Mike agrees) | ||||
* | Add the Lucent USS-720 ISD Smart Cable. | msmith | 1999-04-08 | 2 | -0/+10 |
| | |||||
* | Added macro logprintf | n_hibma | 1999-04-07 | 1 | -0/+4 |
| | |||||
* | fix typo | n_hibma | 1999-04-06 | 1 | -2/+2 |
| | |||||
* | 1) Add the defines for the Mass Storage class | n_hibma | 1999-04-05 | 1 | -10/+23 |
| | | | | | 2) Add comments 3) Add UE_DIR to replace the querying of UE_IN directly | ||||
* | change wrong names in prototypes (pipe to dev) | n_hibma | 1999-04-05 | 1 | -3/+3 |
| | |||||
* | Add the defines for the Iomega Zip 100 drive | n_hibma | 1999-04-05 | 2 | -0/+16 |
| | |||||
* | bugfix: initialise timeout for usbd_device_request as well. | n_hibma | 1999-04-05 | 1 | -3/+4 |
| | | | | | moved statements around to reflect sequence in the struct, to make finding these discrepancies easier. |