<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/dev/usb/hid.c, branch release/4.6.2_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=release%2F4.6.2_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=release%2F4.6.2_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2002-08-14T06:57:09Z</updated>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2002-08-14T06:57:09Z</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2002-08-14T06:57:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=72b7f92e6edf4375820f765b41697b3208ce7fe7'/>
<id>urn:sha1:72b7f92e6edf4375820f765b41697b3208ce7fe7</id>
<content type='text'>
'RELENG_4_6_2_RELEASE'.

This commit was manufactured to restore the state of the 4.6.2-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
</content>
</entry>
<entry>
<title>MFC: Remove the use of the __P() macro</title>
<updated>2000-10-31T23:23:30Z</updated>
<author>
<name>Nick Hibma</name>
<email>n_hibma@FreeBSD.org</email>
</author>
<published>2000-10-31T23:23:30Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=c5eb68505f7d993f7c693ba2690280efbe2f0f6f'/>
<id>urn:sha1:c5eb68505f7d993f7c693ba2690280efbe2f0f6f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MFC: maintain the proper old position in the HID decoder. Change Lennart's</title>
<updated>2000-07-02T11:27:27Z</updated>
<author>
<name>Nick Hibma</name>
<email>n_hibma@FreeBSD.org</email>
</author>
<published>2000-07-02T11:27:27Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=42656335a4424bb7af2e41d840cac7319d229764'/>
<id>urn:sha1:42656335a4424bb7af2e41d840cac7319d229764</id>
<content type='text'>
e-mail address
</content>
</entry>
<entry>
<title>MFC: Keep the bit position even when the report descriptor says POP.</title>
<updated>2000-05-07T14:39:59Z</updated>
<author>
<name>Nick Hibma</name>
<email>n_hibma@FreeBSD.org</email>
</author>
<published>2000-05-07T14:39:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=0dd39cc3d0fe7df37139002013c118e2ceafa653'/>
<id>urn:sha1:0dd39cc3d0fe7df37139002013c118e2ceafa653</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MFC: static -&gt; Static in order to be more OpenBSD friendly.</title>
<updated>2000-05-07T14:22:47Z</updated>
<author>
<name>Nick Hibma</name>
<email>n_hibma@FreeBSD.org</email>
</author>
<published>2000-05-07T14:22:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=bfaaf3763588905a5f69274d7ffcaefa99e1ce76'/>
<id>urn:sha1:bfaaf3763588905a5f69274d7ffcaefa99e1ce76</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Synchronisation with NetBSD as of 1999/11/16:</title>
<updated>1999-11-17T22:33:51Z</updated>
<author>
<name>Nick Hibma</name>
<email>n_hibma@FreeBSD.org</email>
</author>
<published>1999-11-17T22:33:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3241be755096a340cd6ba126b6d88e362ad03b71'/>
<id>urn:sha1:3241be755096a340cd6ba126b6d88e362ad03b71</id>
<content type='text'>
Cleaning up the code:
- Declare many functions static
- Change variable names to make them more self explanatory
- Change usbd_request_handle -&gt; usbd_xfer_handle
- Syntactical changes
- Remove some unused code
- Other KNF changes

Interrupt context handling
- Change delay to usbd_delay_ms were possible (takes polling mode into
  account)
- Change detection mechanism for interrupt context

Add support for pre-allocation DMA-able memory by device driver

Add preliminary support for isochronous to the UHCI driver (not for OHCI
yet).

usb.c, uhci.c, ohci.c
- Initial attempt at detachable USB host controllers
- Handle the use_polling flag with a lttle more care and only set it if
we are cold booting.

usb.c, uhci.c ohci.c, usbdi.c usbdi_util.c usb_subr.c
- Make sure an aborted pipe is marked as not running.
- Start queued request in the right order.
- Insert some more DIAGNOSTIC sanity checks.
- Remove (almost) unused definitions USBD_XFER_OUT and USBD_XFER_IN.

usb.c, usb_subr.c
- Add an event mechanism so that a userland process can watch devices
  come and go.

ohci.c
- Handle the case when a USB transfer is so long that it crosses two
  page (4K) boundaries.  OHCI cannot do that with a single TD so we make
  a chain.

ulpt.c
- Use a bigger buffer when transferring data.
- Pre-allocate the DMA buffer.  This makes the driver slightly more
  efficient.
- Comment out the GET_DEVICE_ID code, because for some unknown reason it
  causes printing to fail sometimes.

usb.h
- Add a macro to extract the isoc type.
- Add a macro to check whether the routine has been entered after splusb
  and if not, complain.

usbdi.c
- Fix a glitch in dequeueing and aborting requests on interrupt pipes.
- Add a flag in the request to determine if the data copying is done by
  the driver or the usbdi layer.
</content>
</entry>
<entry>
<title>Remove superfluous header file includes.</title>
<updated>1999-11-08T21:06:21Z</updated>
<author>
<name>Nick Hibma</name>
<email>n_hibma@FreeBSD.org</email>
</author>
<published>1999-11-08T21:06:21Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=24b4921ad1605bc510017d196108e5455b76d59b'/>
<id>urn:sha1:24b4921ad1605bc510017d196108e5455b76d59b</id>
<content type='text'>
Pushed-By:	phk
</content>
</entry>
<entry>
<title>Major synchronisation with the NetBSD USB stack:</title>
<updated>1999-10-07T19:26:38Z</updated>
<author>
<name>Nick Hibma</name>
<email>n_hibma@FreeBSD.org</email>
</author>
<published>1999-10-07T19:26:38Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=8c895d718bc84906595ec78a743085ea713ebd89'/>
<id>urn:sha1:8c895d718bc84906595ec78a743085ea713ebd89</id>
<content type='text'>
- Some cleanup and improvements in the uhci and ohci drivers
- Support for plugging and unplugging devices improved
- Now available is bulk transport over OHCI controllers
- Resume and suspend have been temporarily been disabled again.  Proper
  support for it is available in the uhci.c and ohci.c files but I have
  not yet spent the brain cycles to use it.
- OpenBSD now uses the USB stack as well
- Add FreeBSD tags
</content>
</entry>
<entry>
<title>1) Make debugging more selective.</title>
<updated>1999-04-11T20:50:33Z</updated>
<author>
<name>Nick Hibma</name>
<email>n_hibma@FreeBSD.org</email>
</author>
<published>1999-04-11T20:50:33Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=67aa00a71bb06d52675f0801d00d23cb37e30e06'/>
<id>urn:sha1:67aa00a71bb06d52675f0801d00d23cb37e30e06</id>
<content type='text'>
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)
</content>
</entry>
<entry>
<title>Textual changes</title>
<updated>1999-01-22T00:51:12Z</updated>
<author>
<name>Nick Hibma</name>
<email>n_hibma@FreeBSD.org</email>
</author>
<published>1999-01-22T00:51:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=235dddd4eaacdb94823b8041ddd5ba5cdd006388'/>
<id>urn:sha1:235dddd4eaacdb94823b8041ddd5ba5cdd006388</id>
<content type='text'>
</content>
</entry>
</feed>
