The NetBSD Project

CVS log for src/sys/dev/usb/uftdi.c

[BACK] Up to [cvs.NetBSD.org] / src / sys / dev / usb

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.80: download - view: text, markup, annotated - select for diffs
Tue Oct 8 20:40:10 2024 UTC (2 months ago) by lloyd
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +15 -1 lines
Add a match quirk matching interface 0 on an iCEBreaker FPGA board

This board has an FTDI 2232C with port A (USB interface 0) connected
to the SPI Flash memory for programming and port B (USB interface 1)
connected to the FPGA's serial lines.

The quirk matching was adjusted to use pmatch(9) because the
iCEBreaker product string contains a version number which changes from
time to time.

Revision 1.70.2.1: download - view: text, markup, annotated - select for diffs
Sun Apr 28 13:29:40 2024 UTC (7 months, 1 week ago) by martin
Branches: netbsd-9
Diff to: previous 1.70: preferred, colored; next MAIN 1.71: preferred, colored
Changes since revision 1.70: +21 -2 lines
Pull up following revision(s) (requested by maya in ticket #1837):

	sys/dev/usb/uftdi.c: revision 1.78
	sys/dev/usb/usbdevs: revision 1.815

Add some USB serial adapters
From Cameron Williams in PR kern/58127

Add support for a range of USB serial adapters
From Cameron Williams in PR kern/58127

Revision 1.76.6.3: download - view: text, markup, annotated - select for diffs
Sun Apr 28 13:26:36 2024 UTC (7 months, 1 week ago) by martin
Branches: netbsd-10
Diff to: previous 1.76.6.2: preferred, colored; branchpoint 1.76: preferred, colored; next MAIN 1.77: preferred, colored
Changes since revision 1.76.6.2: +21 -2 lines
Pull up following revision(s) (requested by maya in ticket #679):

	sys/dev/usb/uftdi.c: revision 1.78
	sys/dev/usb/usbdevs: revision 1.815

Add some USB serial adapters
From Cameron Williams in PR kern/58127

Add support for a range of USB serial adapters
From Cameron Williams in PR kern/58127

Revision 1.76.6.2: download - view: text, markup, annotated - select for diffs
Sun Apr 28 13:07:17 2024 UTC (7 months, 1 week ago) by martin
Branches: netbsd-10
Diff to: previous 1.76.6.1: preferred, colored; branchpoint 1.76: preferred, colored
Changes since revision 1.76.6.1: +16 -4 lines
Pull up following revision(s) (requested by thorpej in ticket #676):

	sys/dev/usb/uftdi.c: revision 1.79

Add a match quirk to prevent matching any interface on SiPEED FPGA
development boards (e.g. Tang Nano 9K).  The FT2232s on these boards
are wired up only for JTAG.

Revision 1.79: download - view: text, markup, annotated - select for diffs
Thu Apr 25 01:33:03 2024 UTC (7 months, 2 weeks ago) by thorpej
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630, perseant-exfatfs-base, perseant-exfatfs
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +16 -4 lines
Add a match quirk to prevent matching any interface on SiPEED FPGA
development boards (e.g. Tang Nano 9K).  The FT2232s on these boards
are wired up only for JTAG.

Revision 1.78: download - view: text, markup, annotated - select for diffs
Wed Apr 17 02:34:45 2024 UTC (7 months, 3 weeks ago) by maya
Branches: MAIN
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +21 -2 lines
Add support for a range of USB serial adapters

From Cameron Williams in PR kern/58127

Revision 1.76.6.1: download - view: text, markup, annotated - select for diffs
Tue Apr 16 18:45:39 2024 UTC (7 months, 3 weeks ago) by martin
Branches: netbsd-10
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +70 -3 lines
Pull up following revision(s) (requested by thorpej in ticket #649):

	sys/dev/usb/uftdi.c: revision 1.77
	share/man/man4/ugen.4: revision 1.39
	sys/dev/usb/ugen.c: revision 1.176
	sys/dev/usb/usbdevices.config: revision 1.43

Define a "flags 1" config directive for ugenif, which is similar to ugen's,
but rather forces the ugenif to match at the *lowest* match priority rather
than the highest.  This allows ugenif to claim only otherwise unclaimed
interfaces.

Add a "match quirk" mechanism to the uftdi driver that allows it to
selectively reject individual interfaces based on the combination of
- Vendor ID
- Product ID
- Interface number
- Vendor string
- Product string

This is necessary[*] to allow some devices that would otherwise match
uftdi (and thus instantiate a ucom) to be matched by ugenif instead,
which is required to make the device available to libusb1.

[*] ...due to a deficiency in the USB stack that does not provide a
mechanism for a user-space driver to claim a device from a kernel driver
and then return it back at a later time.

Use this new match quirk mechanism to reject "interface 1" of the
FTDI 2232C-based Tigard debug board; On this board, "interface 0"
is brought out to regular TTL-level UART pins, but "interface 1" is
brought out to SWD and JTAG headers, and is really only useful when
used with something like openocd.  Because the FTDI 2232C on this board
just uses the standard FTDI vendor and product IDs, it can only be
distinguished by the strings, which cannot be specified usbdevices.config,
thus necessitating the match quirk entry (that works in combination
with the ugenif entry added in usbdevices.config).

Revision 1.77: download - view: text, markup, annotated - select for diffs
Tue Mar 26 03:38:02 2024 UTC (8 months, 2 weeks ago) by thorpej
Branches: MAIN
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +70 -3 lines
Add a "match quirk" mechanism to the uftdi driver that allows it to
selectively reject individual interfaces based on the combination of
- Vendor ID
- Product ID
- Interface number
- Vendor string
- Product string

This is necessary[*] to allow some devices that would otherwise match
uftdi (and thus instantiate a ucom) to be matched by ugenif instead,
which is required to make the device available to libusb1.

[*] ...due to a deficiency in the USB stack that does not provide a
mechanism for a user-space driver to claim a device from a kernel driver
and then return it back at a later time.

Use this new match quirk mechanism to reject "interface 1" of the
FTDI 2232C-based Tigard debug board; On this board, "interface 0"
is brought out to regular TTL-level UART pins, but "interface 1" is
brought out to SWD and JTAG headers, and is really only useful when
used with something like openocd.  Because the FTDI 2232C on this board
just uses the standard FTDI vendor and product IDs, it can only be
distinguished by the strings, which cannot be specified usbdevices.config,
thus necessitating the match quirk entry (that works in combination
with the ugenif entry added in usbdevices.config).

Revision 1.76: download - view: text, markup, annotated - select for diffs
Sat Aug 7 16:19:17 2021 UTC (3 years, 4 months ago) by thorpej
Branches: MAIN
CVS tags: thorpej-ifq-base, thorpej-ifq, thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, thorpej-altq-separation-base, thorpej-altq-separation, netbsd-10-base, netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, bouyer-sunxi-drm-base, bouyer-sunxi-drm
Branch point for: netbsd-10
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +3 -4 lines
Merge thorpej-cfargs2.

Revision 1.75.8.1: download - view: text, markup, annotated - select for diffs
Wed Aug 4 23:07:57 2021 UTC (3 years, 4 months ago) by thorpej
Branches: thorpej-cfargs2
Diff to: previous 1.75: preferred, colored; next MAIN 1.76: preferred, colored
Changes since revision 1.75: +3 -4 lines
Adapt to CFARGS().

Revision 1.75: download - view: text, markup, annotated - select for diffs
Sat Apr 24 23:36:59 2021 UTC (3 years, 7 months ago) by thorpej
Branches: MAIN
CVS tags: thorpej-i2c-spi-conf-base, thorpej-i2c-spi-conf, thorpej-futex2-base, thorpej-futex2, thorpej-cfargs2-base, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Branch point for: thorpej-cfargs2
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +5 -4 lines
Merge thorpej-cfargs branch:

Simplify and make extensible the config_search() / config_found() /
config_attach() interfaces: rather than having different variants for
which arguments you want pass along, just have a single call that
takes a variadic list of tag-value arguments.

Adjust all call sites:
- Simplify wherever possible; don't pass along arguments that aren't
  actually needed.
- Don't be explicit about what interface attribute is attaching if
  the device only has one.  (More simplification.)
- Add a config_probe() function to be used in indirect configuiration
  situations, making is visibly easier to see when indirect config is
  in play, and allowing for future change in semantics.  (As of now,
  this is just a wrapper around config_match(), but that is an
  implementation detail.)

Remove unnecessary or redundant interface attributes where they're not
needed.

There are currently 5 "cfargs" defined:
- CFARG_SUBMATCH (submatch function for direct config)
- CFARG_SEARCH (search function for indirect config)
- CFARG_IATTR (interface attribte)
- CFARG_LOCATORS (locators array)
- CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles)

...and a sentinel value CFARG_EOL.

Add some extra sanity checking to ensure that interface attributes
aren't ambiguous.

Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark
ports to associate those device handles with device_t instance.  This
will trickle trough to more places over time (need back-end for pre-OFW
Sun OBP; any others?).

Revision 1.74.6.2: download - view: text, markup, annotated - select for diffs
Mon Mar 22 16:23:46 2021 UTC (3 years, 8 months ago) by thorpej
Branches: thorpej-cfargs
Diff to: previous 1.74.6.1: preferred, colored; branchpoint 1.74: preferred, colored; next MAIN 1.75: preferred, colored
Changes since revision 1.74.6.1: +2 -3 lines
Audit CFARG_IATTR in config_found() calls, and remove it in situations
where the interface attribute is not ambiguous.

Revision 1.74.6.1: download - view: text, markup, annotated - select for diffs
Mon Mar 22 02:01:02 2021 UTC (3 years, 8 months ago) by thorpej
Branches: thorpej-cfargs
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +6 -4 lines
Mechanical conversion of config_found_sm_loc() -> config_found().
CFARG_IATTR usage needs to be audited.

Revision 1.67.4.3: download - view: text, markup, annotated - select for diffs
Mon Apr 13 08:04:49 2020 UTC (4 years, 7 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.67.4.2: preferred, colored; branchpoint 1.67: preferred, colored; next MAIN 1.68: preferred, colored
Changes since revision 1.67.4.2: +162 -27 lines
Mostly merge changes from HEAD upto 20200411

Revision 1.67.4.2: download - view: text, markup, annotated - select for diffs
Wed Apr 8 14:08:13 2020 UTC (4 years, 8 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.67.4.1: preferred, colored; branchpoint 1.67: preferred, colored
Changes since revision 1.67.4.1: +5 -5 lines
Merge changes from current as of 20200406

Revision 1.74: download - view: text, markup, annotated - select for diffs
Sat Mar 14 02:35:33 2020 UTC (4 years, 8 months ago) by christos
Branches: MAIN
CVS tags: thorpej-futex-base, thorpej-futex, thorpej-cfargs-base, phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, bouyer-xenpvh-base2, bouyer-xenpvh-base1, bouyer-xenpvh-base, bouyer-xenpvh
Branch point for: thorpej-cfargs
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +13 -13 lines
revert the 0x% -> %# change for fixed width formats pointed out by uwe.

Revision 1.73: download - view: text, markup, annotated - select for diffs
Fri Mar 13 18:17:40 2020 UTC (4 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +15 -15 lines
PR/55068: sc.dying: Fix printf formats:
- no %s/%p for kernel log
- 0x% -> %#
- always %j for kernel log

Revision 1.72: download - view: text, markup, annotated - select for diffs
Tue Jan 7 06:42:26 2020 UTC (4 years, 11 months ago) by maxv
Branches: MAIN
CVS tags: is-mlppp-base, is-mlppp, ad-namecache-base3, ad-namecache-base2, ad-namecache-base1, ad-namecache-base, ad-namecache
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +3 -3 lines
Localify, constify.

Revision 1.71: download - view: text, markup, annotated - select for diffs
Fri Sep 13 20:50:45 2019 UTC (5 years, 2 months ago) by ryo
Branches: MAIN
CVS tags: phil-wifi-20191119
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +164 -29 lines
Support serial speeds up to 12mbaud with newer FTDI chips.

baudrate calculation code uftdi_encode_baudrate() from FreeBSD uftdi.c@r330385

Revision 1.67.4.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:07:34 2019 UTC (5 years, 6 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +46 -54 lines
Sync with HEAD

Revision 1.70: download - view: text, markup, annotated - select for diffs
Thu May 9 02:43:35 2019 UTC (5 years, 7 months ago) by mrg
Branches: MAIN
CVS tags: phil-wifi-20190609, netbsd-9-base, netbsd-9-4-RELEASE, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1
Branch point for: netbsd-9
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +43 -47 lines
clean up ucom parents some more:
- it's always "bool sc_dying" now, with true/false
- heavy use of static functions
- remove all ucom parent ca_activate callbacks.  they're never called.
- callbacks should generally do little to nothing if sc_dying is set
- open resources should be released in detach after setting sc_dying
- don't complain about usbd_abort_pipe() or usbd_close_pipe() failure
- when releasing resources, zero the softc member as well
- remove ucom_methods members no longer destined to be filled in
- generally, DPRINTF() before sc_dying short circuit
- use EIO when dying, not ENXIO or 0
- add some ucom_open() callbacks that simply return EIO if dying

Revision 1.69: download - view: text, markup, annotated - select for diffs
Sun May 5 03:17:54 2019 UTC (5 years, 7 months ago) by mrg
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +3 -3 lines
remove explicit 'extern struct cfdriver <my>_cd;' and use ioconf.h

Revision 1.68: download - view: text, markup, annotated - select for diffs
Sat May 4 08:04:13 2019 UTC (5 years, 7 months ago) by mrg
Branches: MAIN
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +5 -9 lines
clean up ucom / ucom-parent interface slightly:

- document what the ucom_methods{} callbacks argument are and that
  they are all optional.
- remove almost all methods being assigned to NULL, as they are all
  C99 initialisers and thus don't need NULL assignments.
- ucom_get_status() callback always has lsr/msr pointers as valid.
  remove all tests for not NULL in these functions.

Revision 1.67: download - view: text, markup, annotated - select for diffs
Tue Feb 20 15:48:37 2018 UTC (6 years, 9 months ago) by ws
Branches: MAIN
CVS tags: phil-wifi-base, pgoyette-compat-merge-20190127, pgoyette-compat-base, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, pgoyette-compat, jdolecek-ncqfixes-base, jdolecek-ncqfixes, isaki-audio2-base, isaki-audio2
Branch point for: phil-wifi
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +83 -128 lines
Attach uftdi to each interface found in the device separately.
This allows for other drivers (e.g. ugen) to attach to some of
the other interfaces.

Allow ugen to attach only to some of the interfaces found in a device.

Revision 1.66: download - view: text, markup, annotated - select for diffs
Fri Dec 22 14:18:29 2017 UTC (6 years, 11 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +3 -2 lines
Add RT Systems RTS-03

Revision 1.53.2.5: download - view: text, markup, annotated - select for diffs
Sun Dec 3 11:37:34 2017 UTC (7 years ago) by jdolecek
Branches: tls-maxphys
Diff to: previous 1.53.2.4: preferred, colored; branchpoint 1.53: preferred, colored; next MAIN 1.54: preferred, colored
Changes since revision 1.53.2.4: +84 -77 lines
update from HEAD

Revision 1.59.6.13: download - view: text, markup, annotated - select for diffs
Mon Aug 28 17:52:28 2017 UTC (7 years, 3 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59.6.12: preferred, colored; branchpoint 1.59: preferred, colored; next MAIN 1.60: preferred, colored
Changes since revision 1.59.6.12: +3 -2 lines
Sync with HEAD

Revision 1.65: download - view: text, markup, annotated - select for diffs
Tue May 30 20:26:26 2017 UTC (7 years, 6 months ago) by jnemeth
Branches: MAIN
CVS tags: tls-maxphys-base-20171202, perseant-stdc-iso10646-base, perseant-stdc-iso10646, nick-nhusb-base-20170825, netbsd-8-base, netbsd-8-3-RELEASE, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, matt-nb8-mediatek-base, matt-nb8-mediatek
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +3 -2 lines
add RTSYS CT57A to list of FTDI based USB serial devices

Revision 1.59.4.2: download - view: text, markup, annotated - select for diffs
Wed Apr 5 19:54:20 2017 UTC (7 years, 8 months ago) by snj
Branches: netbsd-7
CVS tags: netbsd-7-2-RELEASE
Diff to: previous 1.59.4.1: preferred, colored; branchpoint 1.59: preferred, colored; next MAIN 1.60: preferred, colored
Changes since revision 1.59.4.1: +84 -79 lines
Pull up following revision(s) (requested by skrll in ticket #1395):
	share/man/man4/axe.4: netbsd-7-nhusb
	share/man/man4/axen.4: netbsd-7-nhusb
	share/man/man4/cdce.4: netbsd-7-nhusb
	share/man/man4/uaudio.4: netbsd-7-nhusb
	share/man/man4/ucom.4: netbsd-7-nhusb
	share/man/man4/uep.4: netbsd-7-nhusb
	share/man/man4/urtw.4: netbsd-7-nhusb
	share/man/man4/usb.4: netbsd-7-nhusb
	share/man/man4/uyap.4: netbsd-7-nhusb
	share/man/man4/xhci.4: netbsd-7-nhusb
	share/man/man9/usbdi.9: netbsd-7-nhusb
	sys/arch/amd64/conf/ALL: netbsd-7-nhusb
	sys/arch/amd64/conf/GENERIC: netbsd-7-nhusb
	sys/arch/amiga/dev/slhci_zbus.c: netbsd-7-nhusb
	sys/arch/arm/allwinner/awin_otg.c: netbsd-7-nhusb
	sys/arch/arm/allwinner/awin_usb.c: netbsd-7-nhusb
	sys/arch/arm/amlogic/amlogic_dwctwo.c: netbsd-7-nhusb
	sys/arch/arm/at91/at91ohci.c: netbsd-7-nhusb
	sys/arch/arm/broadcom/bcm2835_dwctwo.c: netbsd-7-nhusb
	sys/arch/arm/broadcom/bcm53xx_usb.c: netbsd-7-nhusb
	sys/arch/arm/ep93xx/epohci.c: netbsd-7-nhusb
	sys/arch/arm/gemini/obio_ehci.c: netbsd-7-nhusb
	sys/arch/arm/imx/files.imx23: netbsd-7-nhusb
	sys/arch/arm/imx/imxusb.c: netbsd-7-nhusb
	sys/arch/arm/imx/imxusbreg.h: netbsd-7-nhusb
	sys/arch/arm/omap/obio_ohci.c: netbsd-7-nhusb
	sys/arch/arm/omap/omap3_ehci.c: netbsd-7-nhusb
	sys/arch/arm/omap/omapl1x_ohci.c: netbsd-7-nhusb
	sys/arch/arm/omap/tiotg.c: netbsd-7-nhusb
	sys/arch/arm/s3c2xx0/ohci_s3c24x0.c: netbsd-7-nhusb
	sys/arch/arm/samsung/exynos_usb.c: netbsd-7-nhusb
	sys/arch/arm/xscale/pxa2x0_ohci.c: netbsd-7-nhusb
	sys/arch/arm/zynq/zynq_usb.c: netbsd-7-nhusb
	sys/arch/hpcarm/dev/nbp_slhci.c: netbsd-7-nhusb
	sys/arch/hpcmips/dev/plumohci.c: netbsd-7-nhusb
	sys/arch/i386/conf/ALL: netbsd-7-nhusb
	sys/arch/i386/conf/GENERIC: netbsd-7-nhusb
	sys/arch/i386/pci/gcscehci.c: netbsd-7-nhusb
	sys/arch/luna68k/conf/GENERIC: netbsd-7-nhusb
	sys/arch/mips/adm5120/dev/ahci.c: netbsd-7-nhusb
	sys/arch/mips/adm5120/dev/ahcivar.h: netbsd-7-nhusb
	sys/arch/mips/alchemy/dev/ohci_aubus.c: netbsd-7-nhusb
	sys/arch/mips/atheros/dev/ehci_arbus.c: netbsd-7-nhusb
	sys/arch/mips/atheros/dev/ohci_arbus.c: netbsd-7-nhusb
	sys/arch/mips/conf/files.adm5120: netbsd-7-nhusb
	sys/arch/mips/ralink/ralink_ehci.c: netbsd-7-nhusb
	sys/arch/mips/ralink/ralink_ohci.c: netbsd-7-nhusb
	sys/arch/mips/rmi/rmixl_ehci.c: netbsd-7-nhusb
	sys/arch/mips/rmi/rmixl_ohci.c: netbsd-7-nhusb
	sys/arch/playstation2/dev/ohci_sbus.c: netbsd-7-nhusb
	sys/arch/powerpc/booke/dev/pq3ehci.c: netbsd-7-nhusb
	sys/arch/powerpc/ibm4xx/dev/dwctwo_plb.c: netbsd-7-nhusb
	sys/arch/x68k/dev/slhci_intio.c: netbsd-7-nhusb
	sys/conf/files: netbsd-7-nhusb
	sys/dev/cardbus/ehci_cardbus.c: netbsd-7-nhusb
	sys/dev/cardbus/ohci_cardbus.c: netbsd-7-nhusb
	sys/dev/cardbus/uhci_cardbus.c: netbsd-7-nhusb
	sys/dev/ic/sl811hs.c: netbsd-7-nhusb
	sys/dev/ic/sl811hsvar.h: netbsd-7-nhusb
	sys/dev/isa/slhci_isa.c: netbsd-7-nhusb
	sys/dev/marvell/ehci_mv.c: netbsd-7-nhusb
	sys/dev/pci/ehci_pci.c: netbsd-7-nhusb
	sys/dev/pci/ohci_pci.c: netbsd-7-nhusb
	sys/dev/pci/uhci_pci.c: netbsd-7-nhusb
	sys/dev/pci/xhci_pci.c: netbsd-7-nhusb
	sys/dev/pcmcia/slhci_pcmcia.c: netbsd-7-nhusb
	sys/dev/usb/Makefile.usbdevs: netbsd-7-nhusb
	sys/dev/usb/TODO: netbsd-7-nhusb
	sys/dev/usb/TODO.usbmp: netbsd-7-nhusb
	sys/dev/usb/aubtfwl.c: netbsd-7-nhusb
	sys/dev/usb/auvitek.c: netbsd-7-nhusb
	sys/dev/usb/auvitek_audio.c: netbsd-7-nhusb
	sys/dev/usb/auvitek_dtv.c: netbsd-7-nhusb
	sys/dev/usb/auvitek_i2c.c: netbsd-7-nhusb
	sys/dev/usb/auvitek_video.c: netbsd-7-nhusb
	sys/dev/usb/auvitekvar.h: netbsd-7-nhusb
	sys/dev/usb/ehci.c: netbsd-7-nhusb
	sys/dev/usb/ehcireg.h: netbsd-7-nhusb
	sys/dev/usb/ehcivar.h: netbsd-7-nhusb
	sys/dev/usb/emdtv.c: netbsd-7-nhusb
	sys/dev/usb/emdtv_dtv.c: netbsd-7-nhusb
	sys/dev/usb/emdtv_ir.c: netbsd-7-nhusb
	sys/dev/usb/emdtvvar.h: netbsd-7-nhusb
	sys/dev/usb/ezload.c: netbsd-7-nhusb
	sys/dev/usb/ezload.h: netbsd-7-nhusb
	sys/dev/usb/files.usb: netbsd-7-nhusb
	sys/dev/usb/hid.c: netbsd-7-nhusb
	sys/dev/usb/hid.h: netbsd-7-nhusb
	sys/dev/usb/if_athn_usb.c: netbsd-7-nhusb
	sys/dev/usb/if_athn_usb.h: netbsd-7-nhusb
	sys/dev/usb/if_atu.c: netbsd-7-nhusb
	sys/dev/usb/if_atureg.h: netbsd-7-nhusb
	sys/dev/usb/if_aue.c: netbsd-7-nhusb
	sys/dev/usb/if_auereg.h: netbsd-7-nhusb
	sys/dev/usb/if_axe.c: netbsd-7-nhusb
	sys/dev/usb/if_axen.c: netbsd-7-nhusb
	sys/dev/usb/if_axenreg.h: netbsd-7-nhusb
	sys/dev/usb/if_axereg.h: netbsd-7-nhusb
	sys/dev/usb/if_cdce.c: netbsd-7-nhusb
	sys/dev/usb/if_cdcereg.h: netbsd-7-nhusb
	sys/dev/usb/if_cue.c: netbsd-7-nhusb
	sys/dev/usb/if_cuereg.h: netbsd-7-nhusb
	sys/dev/usb/if_kue.c: netbsd-7-nhusb
	sys/dev/usb/if_kuereg.h: netbsd-7-nhusb
	sys/dev/usb/if_otus.c: netbsd-7-nhusb
	sys/dev/usb/if_otusvar.h: netbsd-7-nhusb
	sys/dev/usb/if_rum.c: netbsd-7-nhusb
	sys/dev/usb/if_rumreg.h: netbsd-7-nhusb
	sys/dev/usb/if_rumvar.h: netbsd-7-nhusb
	sys/dev/usb/if_run.c: netbsd-7-nhusb
	sys/dev/usb/if_runvar.h: netbsd-7-nhusb
	sys/dev/usb/if_smsc.c: netbsd-7-nhusb
	sys/dev/usb/if_smscreg.h: netbsd-7-nhusb
	sys/dev/usb/if_smscvar.h: netbsd-7-nhusb
	sys/dev/usb/if_udav.c: netbsd-7-nhusb
	sys/dev/usb/if_udavreg.h: netbsd-7-nhusb
	sys/dev/usb/if_upgt.c: netbsd-7-nhusb
	sys/dev/usb/if_upgtvar.h: netbsd-7-nhusb
	sys/dev/usb/if_upl.c: netbsd-7-nhusb
	sys/dev/usb/if_ural.c: netbsd-7-nhusb
	sys/dev/usb/if_uralreg.h: netbsd-7-nhusb
	sys/dev/usb/if_uralvar.h: netbsd-7-nhusb
	sys/dev/usb/if_url.c: netbsd-7-nhusb
	sys/dev/usb/if_urlreg.h: netbsd-7-nhusb
	sys/dev/usb/if_urndis.c: netbsd-7-nhusb
	sys/dev/usb/if_urndisreg.h: netbsd-7-nhusb
	sys/dev/usb/if_urtw.c: netbsd-7-nhusb
	sys/dev/usb/if_urtwn.c: netbsd-7-nhusb
	sys/dev/usb/if_urtwn_data.h: netbsd-7-nhusb
	sys/dev/usb/if_urtwnreg.h: netbsd-7-nhusb
	sys/dev/usb/if_urtwnvar.h: netbsd-7-nhusb
	sys/dev/usb/if_urtwreg.h: netbsd-7-nhusb
	sys/dev/usb/if_zyd.c: netbsd-7-nhusb
	sys/dev/usb/if_zydreg.h: netbsd-7-nhusb
	sys/dev/usb/irmce.c: netbsd-7-nhusb
	sys/dev/usb/moscom.c: netbsd-7-nhusb
	sys/dev/usb/motg.c: netbsd-7-nhusb
	sys/dev/usb/motgvar.h: netbsd-7-nhusb
	sys/dev/usb/ohci.c: netbsd-7-nhusb
	sys/dev/usb/ohcireg.h: netbsd-7-nhusb
	sys/dev/usb/ohcivar.h: netbsd-7-nhusb
	sys/dev/usb/pseye.c: netbsd-7-nhusb
	sys/dev/usb/slurm.c: netbsd-7-nhusb
	sys/dev/usb/stuirda.c: netbsd-7-nhusb
	sys/dev/usb/u3g.c: netbsd-7-nhusb
	sys/dev/usb/uark.c: netbsd-7-nhusb
	sys/dev/usb/uatp.c: netbsd-7-nhusb
	sys/dev/usb/uaudio.c: netbsd-7-nhusb
	sys/dev/usb/uberry.c: netbsd-7-nhusb
	sys/dev/usb/ubsa.c: netbsd-7-nhusb
	sys/dev/usb/ubsa_common.c: netbsd-7-nhusb
	sys/dev/usb/ubsavar.h: netbsd-7-nhusb
	sys/dev/usb/ubt.c: netbsd-7-nhusb
	sys/dev/usb/uchcom.c: netbsd-7-nhusb
	sys/dev/usb/ucom.c: netbsd-7-nhusb
	sys/dev/usb/ucomvar.h: netbsd-7-nhusb
	sys/dev/usb/ucycom.c: netbsd-7-nhusb
	sys/dev/usb/udl.c: netbsd-7-nhusb
	sys/dev/usb/udl.h: netbsd-7-nhusb
	sys/dev/usb/udsbr.c: netbsd-7-nhusb
	sys/dev/usb/udsir.c: netbsd-7-nhusb
	sys/dev/usb/uep.c: netbsd-7-nhusb
	sys/dev/usb/uftdi.c: netbsd-7-nhusb
	sys/dev/usb/uftdireg.h: netbsd-7-nhusb
	sys/dev/usb/ugen.c: netbsd-7-nhusb
	sys/dev/usb/ugensa.c: netbsd-7-nhusb
	sys/dev/usb/uhci.c: netbsd-7-nhusb
	sys/dev/usb/uhcireg.h: netbsd-7-nhusb
	sys/dev/usb/uhcivar.h: netbsd-7-nhusb
	sys/dev/usb/uhid.c: netbsd-7-nhusb
	sys/dev/usb/uhidev.c: netbsd-7-nhusb
	sys/dev/usb/uhidev.h: netbsd-7-nhusb
	sys/dev/usb/uhmodem.c: netbsd-7-nhusb
	sys/dev/usb/uhso.c: netbsd-7-nhusb
	sys/dev/usb/uhub.c: netbsd-7-nhusb
	sys/dev/usb/uipad.c: netbsd-7-nhusb
	sys/dev/usb/uipaq.c: netbsd-7-nhusb
	sys/dev/usb/uirda.c: netbsd-7-nhusb
	sys/dev/usb/uirdavar.h: netbsd-7-nhusb
	sys/dev/usb/ukbd.c: netbsd-7-nhusb
	sys/dev/usb/ukbdmap.c: netbsd-7-nhusb
	sys/dev/usb/ukyopon.c: netbsd-7-nhusb
	sys/dev/usb/ukyopon.h: netbsd-7-nhusb
	sys/dev/usb/ulpt.c: netbsd-7-nhusb
	sys/dev/usb/umass.c: netbsd-7-nhusb
	sys/dev/usb/umass_isdata.c: netbsd-7-nhusb
	sys/dev/usb/umass_isdata.h: netbsd-7-nhusb
	sys/dev/usb/umass_quirks.c: netbsd-7-nhusb
	sys/dev/usb/umass_quirks.h: netbsd-7-nhusb
	sys/dev/usb/umass_scsipi.c: netbsd-7-nhusb
	sys/dev/usb/umass_scsipi.h: netbsd-7-nhusb
	sys/dev/usb/umassvar.h: netbsd-7-nhusb
	sys/dev/usb/umcs.c: netbsd-7-nhusb
	sys/dev/usb/umct.c: netbsd-7-nhusb
	sys/dev/usb/umidi.c: netbsd-7-nhusb
	sys/dev/usb/umidi_quirks.c: netbsd-7-nhusb
	sys/dev/usb/umidi_quirks.h: netbsd-7-nhusb
	sys/dev/usb/umodem.c: netbsd-7-nhusb
	sys/dev/usb/umodem_common.c: netbsd-7-nhusb
	sys/dev/usb/umodemvar.h: netbsd-7-nhusb
	sys/dev/usb/ums.c: netbsd-7-nhusb
	sys/dev/usb/uplcom.c: netbsd-7-nhusb
	sys/dev/usb/urio.c: netbsd-7-nhusb
	sys/dev/usb/urio.h: netbsd-7-nhusb
	sys/dev/usb/usb.c: netbsd-7-nhusb
	sys/dev/usb/usb.h: netbsd-7-nhusb
	sys/dev/usb/usb_mem.c: netbsd-7-nhusb
	sys/dev/usb/usb_mem.h: netbsd-7-nhusb
	sys/dev/usb/usb_quirks.c: netbsd-7-nhusb
	sys/dev/usb/usb_quirks.h: netbsd-7-nhusb
	sys/dev/usb/usb_subr.c: netbsd-7-nhusb
	sys/dev/usb/usbdevices.config: netbsd-7-nhusb
	sys/dev/usb/usbdevs: netbsd-7-nhusb
	sys/dev/usb/usbdevs.h: netbsd-7-nhusb
	sys/dev/usb/usbdevs_data.h: netbsd-7-nhusb
	sys/dev/usb/usbdi.c: netbsd-7-nhusb
	sys/dev/usb/usbdi.h: netbsd-7-nhusb
	sys/dev/usb/usbdi_util.c: netbsd-7-nhusb
	sys/dev/usb/usbdi_util.h: netbsd-7-nhusb
	sys/dev/usb/usbdivar.h: netbsd-7-nhusb
	sys/dev/usb/usbhid.h: netbsd-7-nhusb
	sys/dev/usb/usbhist.h: netbsd-7-nhusb
	sys/dev/usb/usbroothub.c: netbsd-7-nhusb
	sys/dev/usb/usbroothub.h: netbsd-7-nhusb
	sys/dev/usb/usbroothub_subr.c: delete
	sys/dev/usb/usbroothub_subr.h: delete
	sys/dev/usb/uscanner.c: netbsd-7-nhusb
	sys/dev/usb/uslsa.c: netbsd-7-nhusb
	sys/dev/usb/usscanner.c: netbsd-7-nhusb
	sys/dev/usb/ustir.c: netbsd-7-nhusb
	sys/dev/usb/uthum.c: netbsd-7-nhusb
	sys/dev/usb/utoppy.c: netbsd-7-nhusb
	sys/dev/usb/uts.c: netbsd-7-nhusb
	sys/dev/usb/uvideo.c: netbsd-7-nhusb
	sys/dev/usb/uvisor.c: netbsd-7-nhusb
	sys/dev/usb/uvscom.c: netbsd-7-nhusb
	sys/dev/usb/uyap.c: netbsd-7-nhusb
	sys/dev/usb/uyap_firmware.h: netbsd-7-nhusb
	sys/dev/usb/uyurex.c: netbsd-7-nhusb
	sys/dev/usb/x1input_rdesc.h: netbsd-7-nhusb
	sys/dev/usb/xhci.c: netbsd-7-nhusb
	sys/dev/usb/xhcireg.h: netbsd-7-nhusb
	sys/dev/usb/xhcivar.h: netbsd-7-nhusb
	sys/dev/usb/xinput_rdesc.h: netbsd-7-nhusb
	sys/external/bsd/common/conf/files.linux: netbsd-7-nhusb
	sys/external/bsd/common/include/linux/err.h: netbsd-7-nhusb
	sys/external/bsd/common/include/linux/kernel.h: netbsd-7-nhusb
	sys/external/bsd/common/include/linux/workqueue.h: netbsd-7-nhusb
	sys/external/bsd/common/linux/linux_work.c: netbsd-7-nhusb
	sys/external/bsd/drm2/dist/drm/radeon/atombios_encoders.c: netbsd-7-nhusb
	sys/external/bsd/drm2/dist/drm/radeon/radeon_legacy_encoders.c: netbsd-7-nhusb
	sys/external/bsd/drm2/drm/files.drmkms: netbsd-7-nhusb
	sys/external/bsd/drm2/i915drm/files.i915drmkms: netbsd-7-nhusb
	sys/external/bsd/drm2/include/linux/err.h: delete
	sys/external/bsd/drm2/include/linux/workqueue.h: delete
	sys/external/bsd/drm2/linux/files.drmkms_linux: netbsd-7-nhusb
	sys/external/bsd/drm2/linux/linux_work.c: delete
	sys/external/bsd/dwc2/dwc2.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dwc2.h: netbsd-7-nhusb
	sys/external/bsd/dwc2/dwc2var.h: netbsd-7-nhusb
	sys/external/bsd/dwc2/dwctwo2netbsd: netbsd-7-nhusb
	sys/external/bsd/dwc2/conf/files.dwc2: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_core.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_core.h: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_coreintr.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_hcd.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_hcd.h: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_hcdddma.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_hcdintr.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_hcdqueue.c: netbsd-7-nhusb
	sys/external/bsd/dwc2/dist/dwc2_hw.h: netbsd-7-nhusb
	sys/modules/drmkms_linux/Makefile: netbsd-7-nhusb
	sys/modules/i915drmkms/Makefile: netbsd-7-nhusb
	sys/rump/dev/lib/libugenhc/ugenhc.c: netbsd-7-nhusb
	sys/rump/dev/lib/libusb/Makefile: netbsd-7-nhusb
	sys/rump/dev/lib/libusb/USB.ioconf: netbsd-7-nhusb
	sys/rump/dev/lib/libusb/usb_at_ugenhc.c: delete
	sys/rump/dev/lib/libusb/opt/opt_usb.h: delete
	sys/rump/dev/lib/libusb/opt/opt_usbverbose.h: delete
	sys/sys/mbuf.h: netbsd-7-nhusb
	usr.sbin/usbdevs/usbdevs.8: netbsd-7-nhusb
	usr.sbin/usbdevs/usbdevs.c: netbsd-7-nhusb
Merge netbsd-7-nhusb:
- API / infrastructure changes to support memory management changes.
- Memory management improvements and bug fixes.
- HCDs should now be MP safe
- conversion to KERNHIST based debug
- FS/LS isoc support on ehci(4).
- conversion to kmem(9)
- Some USB 3 support - mostly from Takahiro HAYASHI (t-hash).
- interrupt transfers now get proper DMA operations
- general bug fixes
     - kern/48308
     - uhub status notification improvements
     - umass(4) probe fix (applied to HEAD already)
     - ohci(4) short transfer fix
- Change the SOFTINT level from NET to SERIAL for the USB softint handler.
  This gives the callback a chance of running when another softint handler
  at SOFTINT_NET has blocked holding a lock, e.g. softnet_lock and most of
  the network stack.
     - kern/49065 - ifconfig tun0 ... sequence locks up system / lockup:
       softnet_lock held across usb xfr
     - kern/50491 - unkillable wait in usbd_transfer while using usmsc0
       on raspberry pi 2
     - kern/51395 - USB Ethernet makes xhci hang
- Various improvements to slhci(4)
- Various improvements to dwc2(4)

Revision 1.59.4.1.4.3: download - view: text, markup, annotated - select for diffs
Fri Mar 31 10:25:55 2017 UTC (7 years, 8 months ago) by skrll
Branches: netbsd-7-nhusb
Diff to: previous 1.59.4.1.4.2: preferred, colored; branchpoint 1.59.4.1: preferred, colored; next MAIN 1.59.4.2: preferred, colored
Changes since revision 1.59.4.1.4.2: +5 -2 lines
revision 1.64
allow suspend with uftdi(4). it works fine.

Revision 1.59.6.12: download - view: text, markup, annotated - select for diffs
Sun Feb 5 13:40:46 2017 UTC (7 years, 10 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59.6.11: preferred, colored; branchpoint 1.59: preferred, colored
Changes since revision 1.59.6.11: +5 -2 lines
Sync with HEAD

Revision 1.59.4.1.4.2: download - view: text, markup, annotated - select for diffs
Thu Jan 26 21:54:24 2017 UTC (7 years, 10 months ago) by skrll
Branches: netbsd-7-nhusb
Diff to: previous 1.59.4.1.4.1: preferred, colored; branchpoint 1.59.4.1: preferred, colored
Changes since revision 1.59.4.1.4.1: +6 -2 lines
Sync with HEAD/nhusb

Revision 1.62.2.1: download - view: text, markup, annotated - select for diffs
Sat Jan 7 08:56:42 2017 UTC (7 years, 11 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.62: preferred, colored; next MAIN 1.63: preferred, colored
Changes since revision 1.62: +9 -2 lines
Sync with HEAD.  (Note that most of these changes are simply $NetBSD$
tag issues.)

Revision 1.64: download - view: text, markup, annotated - select for diffs
Thu Dec 15 17:21:21 2016 UTC (7 years, 11 months ago) by maya
Branches: MAIN
CVS tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, nick-nhusb-base-20170204, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +5 -2 lines
allow suspend with uftdi(4). it works fine.

Revision 1.59.6.11: download - view: text, markup, annotated - select for diffs
Mon Dec 5 10:55:18 2016 UTC (8 years ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59.6.10: preferred, colored; branchpoint 1.59: preferred, colored
Changes since revision 1.59.6.10: +6 -2 lines
Sync with HEAD

Revision 1.63: download - view: text, markup, annotated - select for diffs
Fri Nov 25 12:56:29 2016 UTC (8 years ago) by skrll
Branches: MAIN
CVS tags: nick-nhusb-base-20161204
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +6 -2 lines
+#include "opt_usb.h"

Revision 1.59.4.1.4.1: download - view: text, markup, annotated - select for diffs
Tue Sep 6 20:33:09 2016 UTC (8 years, 3 months ago) by skrll
Branches: netbsd-7-nhusb
Diff to: previous 1.59.4.1: preferred, colored
Changes since revision 1.59.4.1: +77 -79 lines
First pass at netbsd-7 updated with USB code from HEAD

Revision 1.59.6.10: download - view: text, markup, annotated - select for diffs
Sat Jul 9 20:25:16 2016 UTC (8 years, 5 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59.6.9: preferred, colored; branchpoint 1.59: preferred, colored
Changes since revision 1.59.6.9: +4 -6 lines
Sync with HEAD

Revision 1.62: download - view: text, markup, annotated - select for diffs
Thu Jul 7 06:55:42 2016 UTC (8 years, 5 months ago) by msaitoh
Branches: MAIN
CVS tags: pgoyette-localcount-base, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, nick-nhusb-base-20161004, nick-nhusb-base-20160907, localcount-20160914
Branch point for: pgoyette-localcount
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +4 -6 lines
KNF. Remove extra spaces. No functional change.

Revision 1.61: download - view: text, markup, annotated - select for diffs
Sat Apr 23 10:15:32 2016 UTC (8 years, 7 months ago) by skrll
Branches: MAIN
CVS tags: nick-nhusb-base-20160529
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +75 -75 lines
Merge nick-nhusb

- API / infrastructure changes to support memory management changes.
- Memory management improvements and bug fixes.
- HCDs should now be MP safe
- conversion to KERNHIST based debug
- FS/LS isoc support on ehci(4).
- conversion to kmem(9)
- Some USB 3 support - mostly from Takahiro HAYASHI (t-hash).
- interrupt transfers now get proper DMA operations
- general bug fixes
    - kern/48308
    - uhub status notification improvements
    - umass(4) probe fix (applied to HEAD already)
    - ohci(4) short transfer fix

Revision 1.59.6.9: download - view: text, markup, annotated - select for diffs
Sat Apr 16 13:22:00 2016 UTC (8 years, 7 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59.6.8: preferred, colored; branchpoint 1.59: preferred, colored
Changes since revision 1.59.6.8: +33 -33 lines
Prefix ucom_attach_args struct members with ucaa_ and rename variables
for consistency.

No functional change.

Revision 1.39.4.2: download - view: text, markup, annotated - select for diffs
Wed May 27 06:18:05 2015 UTC (9 years, 6 months ago) by msaitoh
Branches: netbsd-5
Diff to: previous 1.39.4.1: preferred, colored; branchpoint 1.39: preferred, colored; next MAIN 1.40: preferred, colored
Changes since revision 1.39.4.1: +34 -11 lines
Pull up following revision(s) (requested by riastradh in ticket #1964):
	sys/dev/usb/uftdi.c: revision 1.53
Use as large a packet size as the ftdi endpoint specifies.
Now I can read from my beaglebone!

Revision 1.59.6.8: download - view: text, markup, annotated - select for diffs
Mon Apr 6 15:18:13 2015 UTC (9 years, 8 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59.6.7: preferred, colored; branchpoint 1.59: preferred, colored
Changes since revision 1.59.6.7: +3 -2 lines
Sync with HEAD

Revision 1.59.6.7: download - view: text, markup, annotated - select for diffs
Sat Mar 21 11:33:37 2015 UTC (9 years, 8 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59.6.6: preferred, colored; branchpoint 1.59: preferred, colored
Changes since revision 1.59.6.6: +7 -7 lines
Add prefixes to attach_arg structure member names. No functional change.

Revision 1.59.6.6: download - view: text, markup, annotated - select for diffs
Thu Mar 19 17:26:43 2015 UTC (9 years, 8 months ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59.6.5: preferred, colored; branchpoint 1.59: preferred, colored
Changes since revision 1.59.6.5: +6 -6 lines
Do the same as OpenBSD and get rid of the *_handle typedefs and use
plain structures insteads

Revision 1.59.4.1: download - view: text, markup, annotated - select for diffs
Sat Feb 21 19:38:02 2015 UTC (9 years, 9 months ago) by martin
Branches: netbsd-7
CVS tags: netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0
Branch point for: netbsd-7-nhusb
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +3 -2 lines
Pull up following revision(s) (requested by nonaka in ticket #538):
	sys/dev/usb/uftdi.c: revision 1.60
	sys/dev/usb/usbdevs: revision 1.690
PR/49681: Support BUFFALO PC-OP-RS1
PR/49681: Support BUFFALO PC-OP-RS1

Revision 1.60: download - view: text, markup, annotated - select for diffs
Fri Feb 20 14:50:53 2015 UTC (9 years, 9 months ago) by nonaka
Branches: MAIN
CVS tags: nick-nhusb-base-20160422, nick-nhusb-base-20160319, nick-nhusb-base-20151226, nick-nhusb-base-20150921, nick-nhusb-base-20150606, nick-nhusb-base-20150406
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +3 -2 lines
PR/49681: Support BUFFALO PC-OP-RS1

Revision 1.59.6.5: download - view: text, markup, annotated - select for diffs
Sat Dec 6 08:37:30 2014 UTC (10 years ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59.6.4: preferred, colored; branchpoint 1.59: preferred, colored
Changes since revision 1.59.6.4: +10 -10 lines
Use c99 designated initialisers for ucom_methods structs.

No functional change.

Revision 1.59.6.4: download - view: text, markup, annotated - select for diffs
Sat Dec 6 08:27:23 2014 UTC (10 years ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59.6.3: preferred, colored; branchpoint 1.59: preferred, colored
Changes since revision 1.59.6.3: +8 -8 lines
KNF. Remove argument name from function declarations.

No functional change.

Revision 1.59.6.3: download - view: text, markup, annotated - select for diffs
Fri Dec 5 09:37:49 2014 UTC (10 years ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59.6.2: preferred, colored; branchpoint 1.59: preferred, colored
Changes since revision 1.59.6.2: +18 -18 lines
KNF. Remove ( ) from return statements.

Revision 1.59.6.2: download - view: text, markup, annotated - select for diffs
Sun Nov 30 13:14:11 2014 UTC (10 years ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59.6.1: preferred, colored; branchpoint 1.59: preferred, colored
Changes since revision 1.59.6.1: +4 -4 lines
Whitespace

Revision 1.59.6.1: download - view: text, markup, annotated - select for diffs
Sun Nov 30 12:18:58 2014 UTC (10 years ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +9 -9 lines
Use C99 types. u_int{8,16,32,64}_t to uint{8,16,32,64}_t.

No functional change.

Revision 1.53.2.4: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:03:51 2014 UTC (10 years, 3 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.53.2.3: preferred, colored; branchpoint 1.53: preferred, colored
Changes since revision 1.53.2.3: +1 -0 lines
Rebase to HEAD as of a few days ago.

Revision 1.48.2.5: download - view: text, markup, annotated - select for diffs
Thu May 22 11:40:37 2014 UTC (10 years, 6 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.48.2.4: preferred, colored; branchpoint 1.48: preferred, colored; next MAIN 1.49: preferred, colored
Changes since revision 1.48.2.4: +5 -3 lines
sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs.  ("Protocol error: too many arguments")

Revision 1.58.2.1: download - view: text, markup, annotated - select for diffs
Sun May 18 17:45:47 2014 UTC (10 years, 6 months ago) by rmind
Branches: rmind-smpnet
Diff to: previous 1.58: preferred, colored; next MAIN 1.59: preferred, colored
Changes since revision 1.58: +3 -2 lines
sync with head

Revision 1.59: download - view: text, markup, annotated - select for diffs
Thu Dec 19 08:22:40 2013 UTC (10 years, 11 months ago) by msaitoh
Branches: MAIN
CVS tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, rmind-smpnet-nbase, rmind-smpnet-base, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, nick-nhusb-base, netbsd-7-base
Branch point for: nick-nhusb, netbsd-7
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +3 -2 lines
Add support for FTDI FT230X.

Revision 1.53.2.3: download - view: text, markup, annotated - select for diffs
Sun Jun 23 06:20:22 2013 UTC (11 years, 5 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.53.2.2: preferred, colored; branchpoint 1.53: preferred, colored
Changes since revision 1.53.2.2: +4 -3 lines
resync from head

Revision 1.58: download - view: text, markup, annotated - select for diffs
Sun Jun 2 12:45:00 2013 UTC (11 years, 6 months ago) by mlelstv
Branches: MAIN
CVS tags: riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2
Branch point for: rmind-smpnet
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +3 -3 lines
The hardware only supports xon/xoff processing for both directions together,
enable it only if both directions are requested.

Revision 1.57: download - view: text, markup, annotated - select for diffs
Sun Mar 24 23:00:48 2013 UTC (11 years, 8 months ago) by cheusov
Branches: MAIN
CVS tags: khorben-n900
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +3 -2 lines

New device Id for Beagle Bone, reviewed by bouyer@ and Lloyd Parker

Revision 1.53.2.2: download - view: text, markup, annotated - select for diffs
Mon Feb 25 00:29:38 2013 UTC (11 years, 9 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.53.2.1: preferred, colored; branchpoint 1.53: preferred, colored
Changes since revision 1.53.2.1: +13 -2 lines
resync with head

Revision 1.48.2.4: download - view: text, markup, annotated - select for diffs
Wed Jan 23 00:06:13 2013 UTC (11 years, 10 months ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.48.2.3: preferred, colored; branchpoint 1.48: preferred, colored
Changes since revision 1.48.2.3: +13 -2 lines
sync with head

Revision 1.56: download - view: text, markup, annotated - select for diffs
Mon Jan 21 19:08:42 2013 UTC (11 years, 10 months ago) by mlelstv
Branches: MAIN
CVS tags: yamt-pagecache-base8, agc-symver-base, agc-symver
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +12 -2 lines
force chip into serial mode
add 232RL product id

Revision 1.55: download - view: text, markup, annotated - select for diffs
Sun Jan 20 13:43:24 2013 UTC (11 years, 10 months ago) by reinoud
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +3 -2 lines
Add line to get the ftdi driver to use the serial function of the FTDI 232H.

Revision 1.48.2.3: download - view: text, markup, annotated - select for diffs
Wed Jan 16 05:33:34 2013 UTC (11 years, 10 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.48.2.2: preferred, colored; branchpoint 1.48: preferred, colored
Changes since revision 1.48.2.2: +3 -2 lines
sync with (a bit old) head

Revision 1.53.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 20 03:02:34 2012 UTC (12 years ago) by tls
Branches: tls-maxphys
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +3 -2 lines
Resync to 2012-11-19 00:00:00 UTC

Revision 1.54: download - view: text, markup, annotated - select for diffs
Fri Nov 2 02:30:15 2012 UTC (12 years, 1 month ago) by jakllsch
Branches: MAIN
CVS tags: yamt-pagecache-base7
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +3 -2 lines
match USB_PRODUCT_FTDI_MAXSTREAM_PKG_U

Revision 1.48.2.2: download - view: text, markup, annotated - select for diffs
Tue Oct 30 17:22:08 2012 UTC (12 years, 1 month ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.48.2.1: preferred, colored; branchpoint 1.48: preferred, colored
Changes since revision 1.48.2.1: +35 -11 lines
sync with head

Revision 1.51.2.2: download - view: text, markup, annotated - select for diffs
Tue Oct 23 20:01:14 2012 UTC (12 years, 1 month ago) by riz
Branches: netbsd-6
CVS tags: netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1
Diff to: previous 1.51.2.1: preferred, colored; branchpoint 1.51: preferred, colored; next MAIN 1.52: preferred, colored
Changes since revision 1.51.2.1: +1 -0 lines

sys/dev/usb/usbdevs				1.626
sys/dev/usb/usbdevs.h				regen
sys/dev/usb/usbdevs_data.h			regen
sys/dev/usb/uftdi.c				1.52

        Add OpenRD JTAG & serial console support.
	[msaitoh, ticket #625]

Revision 1.51.2.1: download - view: text, markup, annotated - select for diffs
Mon Aug 13 20:29:32 2012 UTC (12 years, 3 months ago) by riz
Branches: netbsd-6
CVS tags: netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +34 -11 lines
Pull up following revision(s) (requested by riastradh in ticket #495):
	sys/dev/usb/uftdi.c: revision 1.53
Use as large a packet size as the ftdi endpoint specifies.
Now I can read from my beaglebone!

Revision 1.53: download - view: text, markup, annotated - select for diffs
Sat Aug 11 07:09:09 2012 UTC (12 years, 4 months ago) by riastradh
Branches: MAIN
CVS tags: yamt-pagecache-base6
Branch point for: tls-maxphys
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +34 -11 lines
Use as large a packet size as the ftdi endpoint specifies.

Now I can read from my beaglebone!

Revision 1.52: download - view: text, markup, annotated - select for diffs
Fri Aug 10 02:40:17 2012 UTC (12 years, 4 months ago) by matt
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +3 -2 lines
Add OpenRD JTAGKey entry

Revision 1.48.2.1: download - view: text, markup, annotated - select for diffs
Tue Apr 17 00:08:07 2012 UTC (12 years, 7 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +4 -2 lines
sync with head

Revision 1.48.6.1: download - view: text, markup, annotated - select for diffs
Sat Feb 18 07:35:08 2012 UTC (12 years, 9 months ago) by mrg
Branches: jmcneill-usbmp
Diff to: previous 1.48: preferred, colored; next MAIN 1.49: preferred, colored
Changes since revision 1.48: +4 -2 lines
merge to -current.

Revision 1.51: download - view: text, markup, annotated - select for diffs
Sat Feb 11 05:27:55 2012 UTC (12 years, 10 months ago) by plunky
Branches: MAIN
CVS tags: yamt-pagecache-base5, yamt-pagecache-base4, netbsd-6-base, jmcneill-usbmp-base9, jmcneill-usbmp-base8, jmcneill-usbmp-base7, jmcneill-usbmp-base6, jmcneill-usbmp-base5, jmcneill-usbmp-base4, jmcneill-usbmp-base3, jmcneill-usbmp-base2, jmcneill-usbmp-base10
Branch point for: netbsd-6
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +4 -2 lines
add Telldus Tellstick and Tellstick Duo

from PR/45908 by Tom Ivar Helbekkmo

Revision 1.50: download - view: text, markup, annotated - select for diffs
Fri Dec 23 00:51:45 2011 UTC (12 years, 11 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +5 -5 lines
Revert previous due to active usbmp branch(es).

Revision 1.49: download - view: text, markup, annotated - select for diffs
Thu Dec 22 20:07:00 2011 UTC (12 years, 11 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +5 -5 lines
Adjust-away inconsistent and trailing whitespace.

Revision 1.48: download - view: text, markup, annotated - select for diffs
Mon Jul 11 20:22:50 2011 UTC (13 years, 5 months ago) by matt
Branches: MAIN
CVS tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, mrg-ohci-jmcneill-usbmp-base, mrg-ohci-jmcneill-usbmp, jmcneill-usbmp-pre-base2, jmcneill-usbmp-base, jmcneill-audiomp3-base, jmcneill-audiomp3
Branch point for: yamt-pagecache, jmcneill-usbmp
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +3 -2 lines
Match SHEEVAPLUG_JTAG.

Revision 1.46.2.1: download - view: text, markup, annotated - select for diffs
Sat Mar 5 20:54:14 2011 UTC (13 years, 9 months ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.46: preferred, colored; next MAIN 1.47: preferred, colored
Changes since revision 1.46: +16 -13 lines
sync with head

Revision 1.45.2.2: download - view: text, markup, annotated - select for diffs
Sat Nov 6 08:08:37 2010 UTC (14 years, 1 month ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.45.2.1: preferred, colored; branchpoint 1.45: preferred, colored; next MAIN 1.46: preferred, colored
Changes since revision 1.45.2.1: +16 -13 lines
Sync with HEAD.

Revision 1.47: download - view: text, markup, annotated - select for diffs
Wed Nov 3 22:34:23 2010 UTC (14 years, 1 month ago) by dyoung
Branches: MAIN
CVS tags: uebayasi-xip-base4, rmind-uvmplock-nbase, rmind-uvmplock-base, matt-mips64-premerge-20101231, jruoho-x86intr-base, jruoho-x86intr, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +16 -13 lines
Stop using the compatibility macros USB_ATTACH(), USB_DETACH(),
USB_MATCH(), et cetera.  These files produce the same assembly
(according to objdump -d) before and after the change

Revision 1.36.4.5: download - view: text, markup, annotated - select for diffs
Wed Aug 11 22:54:15 2010 UTC (14 years, 4 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.36.4.4: preferred, colored; branchpoint 1.36: preferred, colored; next MAIN 1.37: preferred, colored
Changes since revision 1.36.4.4: +3 -4 lines
sync with head.

Revision 1.45.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 30 14:43:52 2010 UTC (14 years, 7 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +3 -4 lines
Sync with HEAD.

Revision 1.39.12.1: download - view: text, markup, annotated - select for diffs
Wed Apr 21 00:27:53 2010 UTC (14 years, 7 months ago) by matt
Branches: matt-nb5-mips64
CVS tags: matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-k15
Diff to: previous 1.39: preferred, colored; next MAIN 1.40: preferred, colored
Changes since revision 1.39: +31 -26 lines
sync to netbsd-5

Revision 1.46: download - view: text, markup, annotated - select for diffs
Sat Mar 13 16:28:13 2010 UTC (14 years, 9 months ago) by scw
Branches: MAIN
CVS tags: yamt-nfs-mp-base11, yamt-nfs-mp-base10, uebayasi-xip-base3, uebayasi-xip-base2, uebayasi-xip-base1
Branch point for: rmind-uvmplock
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +3 -4 lines
Fix PR kern/42838 using option #1 as described by KIYOHARA Takashi in
http://mail-index.netbsd.org/current-users/2010/02/20/msg012654.html

Add a comment in struct ucom_methods to explain usage of 'ptr' and 'count'
in the ucom_read handler.

Revision 1.36.4.4: download - view: text, markup, annotated - select for diffs
Thu Mar 11 15:04:06 2010 UTC (14 years, 9 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.36.4.3: preferred, colored; branchpoint 1.36: preferred, colored
Changes since revision 1.36.4.3: +14 -16 lines
sync with head

Revision 1.45: download - view: text, markup, annotated - select for diffs
Mon Jan 18 20:57:13 2010 UTC (14 years, 10 months ago) by martin
Branches: MAIN
CVS tags: yamt-nfs-mp-base9, uebayasi-xip-base
Branch point for: uebayasi-xip
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +4 -2 lines
Add two CTI rs485 dongles

Revision 1.44: download - view: text, markup, annotated - select for diffs
Thu Nov 12 19:51:44 2009 UTC (15 years, 1 month ago) by dyoung
Branches: MAIN
CVS tags: matt-premerge-20091211
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +5 -11 lines
Simplify activation hooks.  (sc_dying must die!)

Revision 1.39.4.1: download - view: text, markup, annotated - select for diffs
Sat Oct 10 20:34:45 2009 UTC (15 years, 2 months ago) by sborrill
Branches: netbsd-5
CVS tags: netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, matt-nb5-pq3-base, matt-nb5-pq3
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +31 -26 lines
Pull up the following revisions(s) (requested by snj in ticket #1083):
	sys/dev/usb/uftdi.c:	revision 1.41-1.42
	share/man/man4/uftdi.4:	revision 1.15
	sys/dev/usb/usbdevs:	revision 1.527

Add support for multiple channel cards, specifically quad channel FT4232H.
Plus fix minor format nit and legacy title comment removal.

Revision 1.43: download - view: text, markup, annotated - select for diffs
Wed Sep 23 19:07:19 2009 UTC (15 years, 2 months ago) by plunky
Branches: MAIN
CVS tags: jym-xensuspend-nbase
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +9 -7 lines
fix up USB drivers printing of autoconf information

1. expand the USB_ATTACH_SETUP macro (requested by jmcneill)

2. reorder the attach function so that the first thing it does is print
   newlines.

3. after this, we can call usbd_devinfo_alloc(), which polls the device
   allowing a context switch, and aprint_normal() the device information.

this avoids problems where autoconf messages are getting mixed up.

Revision 1.39.8.2: download - view: text, markup, annotated - select for diffs
Thu Jul 23 23:32:21 2009 UTC (15 years, 4 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.39.8.1: preferred, colored; branchpoint 1.39: preferred, colored; next MAIN 1.40: preferred, colored
Changes since revision 1.39.8.1: +31 -26 lines
Sync with HEAD.

Revision 1.36.4.3: download - view: text, markup, annotated - select for diffs
Sat Jun 20 07:20:29 2009 UTC (15 years, 5 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.36.4.2: preferred, colored; branchpoint 1.36: preferred, colored
Changes since revision 1.36.4.2: +31 -26 lines
sync with head

Revision 1.42: download - view: text, markup, annotated - select for diffs
Mon May 25 11:38:49 2009 UTC (15 years, 6 months ago) by nisimura
Branches: MAIN
CVS tags: yamt-nfs-mp-base8, yamt-nfs-mp-base7, yamt-nfs-mp-base6, yamt-nfs-mp-base5, jymxensuspend-base
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +3 -2 lines
add VID 0x6011 case to match FT4232H chip.

Revision 1.41: download - view: text, markup, annotated - select for diffs
Sun May 24 16:24:25 2009 UTC (15 years, 6 months ago) by nisimura
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +30 -26 lines
- detect FTDI chiptype from bcdDevice field to determine the number of
  channels.
- tested on 232BM, 232RL and 2232D chips.
- now capable of quad channel FT4232H.
- minor format nit and legacy title comment removal.
- non UART type bit stream (!= ucom) support is under planning.

Revision 1.39.8.1: download - view: text, markup, annotated - select for diffs
Wed May 13 17:21:35 2009 UTC (15 years, 7 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +3 -2 lines
Sync with HEAD.

Commit is split, to avoid a "too many arguments" protocol error.

Revision 1.36.4.2: download - view: text, markup, annotated - select for diffs
Mon May 4 08:13:21 2009 UTC (15 years, 7 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.36.4.1: preferred, colored; branchpoint 1.36: preferred, colored
Changes since revision 1.36.4.1: +28 -19 lines
sync with head.

Revision 1.39.2.1: download - view: text, markup, annotated - select for diffs
Tue Apr 28 07:36:39 2009 UTC (15 years, 7 months ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.39: preferred, colored; next MAIN 1.40: preferred, colored
Changes since revision 1.39: +3 -2 lines
Sync with HEAD.

Revision 1.40: download - view: text, markup, annotated - select for diffs
Tue Apr 21 16:26:01 2009 UTC (15 years, 7 months ago) by taca
Branches: MAIN
CVS tags: yamt-nfs-mp-base4, yamt-nfs-mp-base3, nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base, jym-xensuspend-base
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +3 -2 lines
Add support for USB serial adapter REX-USB60F which I tested.

Revision 1.38.4.1: download - view: text, markup, annotated - select for diffs
Sun Oct 19 22:17:10 2008 UTC (16 years, 1 month ago) by haad
Branches: haad-dm
Diff to: previous 1.38: preferred, colored; next MAIN 1.39: preferred, colored
Changes since revision 1.38: +6 -2 lines
Sync with HEAD.

Revision 1.35.6.2: download - view: text, markup, annotated - select for diffs
Sun Sep 28 10:40:33 2008 UTC (16 years, 2 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.35.6.1: preferred, colored; branchpoint 1.35: preferred, colored; next MAIN 1.36: preferred, colored
Changes since revision 1.35.6.1: +4 -0 lines
Sync with HEAD.

Revision 1.37.2.2: download - view: text, markup, annotated - select for diffs
Thu Sep 18 04:35:11 2008 UTC (16 years, 2 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.37.2.1: preferred, colored; branchpoint 1.37: preferred, colored; next MAIN 1.38: preferred, colored
Changes since revision 1.37.2.1: +6 -2 lines
Sync with wrstuden-revivesa-base-2.

Revision 1.39: download - view: text, markup, annotated - select for diffs
Sat Sep 6 21:42:05 2008 UTC (16 years, 3 months ago) by rmind
Branches: MAIN
CVS tags: wrstuden-revivesa-base-4, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, nick-hppapmap-base2, netbsd-5-base, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, mjf-devfs2-base, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20091211, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, haad-nbase2, haad-dm-base2, haad-dm-base1, haad-dm-base, ad-audiomp2-base, ad-audiomp2
Branch point for: nick-hppapmap, netbsd-5, matt-nb5-mips64, jym-xensuspend
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +6 -2 lines
PR/38202: Jeff McMahill: Support for Sealevel SeaPORT+4 USB to Serial adaptor.

Revision 1.37.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 23 04:31:36 2008 UTC (16 years, 5 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +23 -19 lines
Sync w/ -current. 34 merge conflicts to follow.

Revision 1.36.2.2: download - view: text, markup, annotated - select for diffs
Wed Jun 4 02:05:20 2008 UTC (16 years, 6 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.36.2.1: preferred, colored; branchpoint 1.36: preferred, colored; next MAIN 1.37: preferred, colored
Changes since revision 1.36.2.1: +23 -19 lines
sync with head

Revision 1.35.6.1: download - view: text, markup, annotated - select for diffs
Mon Jun 2 13:23:54 2008 UTC (16 years, 6 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +23 -26 lines
Sync with HEAD.

Revision 1.38: download - view: text, markup, annotated - select for diffs
Sat May 24 16:40:58 2008 UTC (16 years, 6 months ago) by cube
Branches: MAIN
CVS tags: yamt-pf42-base4, yamt-pf42-base3, wrstuden-revivesa-base-1, wrstuden-revivesa-base, simonb-wapbl-nbase, simonb-wapbl-base, simonb-wapbl
Branch point for: haad-dm
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +23 -19 lines
Split device_t and softc for all USB device drivers, and related cosmetic
changes.

Matthias Drochner kindly reviewed this patch, and tested ums, ubt, uaudio
and ral.  I tested umass myself.

Revision 1.36.2.1: download - view: text, markup, annotated - select for diffs
Sun May 18 12:34:50 2008 UTC (16 years, 6 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +2 -9 lines
sync with head.

Revision 1.36.4.1: download - view: text, markup, annotated - select for diffs
Fri May 16 02:25:10 2008 UTC (16 years, 6 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +2 -9 lines
sync with head.

Revision 1.37: download - view: text, markup, annotated - select for diffs
Mon Apr 28 20:23:59 2008 UTC (16 years, 7 months ago) by martin
Branches: MAIN
CVS tags: yamt-pf42-base2, yamt-nfs-mp-base2, hpcarm-cleanup-nbase
Branch point for: wrstuden-revivesa
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +2 -9 lines
Remove clause 3 and 4 from TNF licenses

Revision 1.36: download - view: text, markup, annotated - select for diffs
Sat Apr 5 16:35:35 2008 UTC (16 years, 8 months ago) by cegger
Branches: MAIN
CVS tags: yamt-pf42-baseX, yamt-pf42-base, yamt-nfs-mp-base
Branch point for: yamt-pf42, yamt-nfs-mp
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +3 -3 lines
use aprint_*_dev and device_xname

Revision 1.31.12.2: download - view: text, markup, annotated - select for diffs
Sun Mar 23 02:04:53 2008 UTC (16 years, 8 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.31.12.1: preferred, colored; branchpoint 1.31: preferred, colored; next MAIN 1.32: preferred, colored
Changes since revision 1.31.12.1: +29 -9 lines
sync with HEAD

Revision 1.24.2.4: download - view: text, markup, annotated - select for diffs
Wed Feb 27 08:36:47 2008 UTC (16 years, 9 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.24.2.3: preferred, colored; branchpoint 1.24: preferred, colored; next MAIN 1.25: preferred, colored
Changes since revision 1.24.2.3: +29 -9 lines
sync with head.

Revision 1.34.2.1: download - view: text, markup, annotated - select for diffs
Mon Feb 18 21:06:26 2008 UTC (16 years, 9 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.34: preferred, colored; next MAIN 1.35: preferred, colored
Changes since revision 1.34: +29 -9 lines
Sync with HEAD.

Revision 1.35: download - view: text, markup, annotated - select for diffs
Mon Feb 18 05:31:24 2008 UTC (16 years, 9 months ago) by dyoung
Branches: MAIN
CVS tags: yamt-lazymbuf-base15, yamt-lazymbuf-base14, nick-net80211-sync-base, nick-net80211-sync, mjf-devfs-base, matt-armv6-nbase, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-base, ad-socklock-base1
Branch point for: mjf-devfs2
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +29 -9 lines
Use device_t and its accessor functions.

Register _childdetached methods with drivers that attach children.
Wait to set child references to NULL there, instead of doing that
in the detach method.

Replace many uses of USB_DECLARE_DRIVER() with CFATTACH_DECL2().

Revision 1.33.4.1: download - view: text, markup, annotated - select for diffs
Tue Nov 13 16:01:42 2007 UTC (17 years, 1 month ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.33: preferred, colored; next MAIN 1.34: preferred, colored
Changes since revision 1.33: +2 -3 lines
Sync with HEAD

Revision 1.31.12.1: download - view: text, markup, annotated - select for diffs
Tue Nov 6 23:30:37 2007 UTC (17 years, 1 month ago) by matt
Branches: matt-armv6
CVS tags: matt-armv6-prevmlocking
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +77 -73 lines
sync with HEAD

Revision 1.31.10.3: download - view: text, markup, annotated - select for diffs
Sun Oct 28 20:11:08 2007 UTC (17 years, 1 month ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.31.10.2: preferred, colored; branchpoint 1.31: preferred, colored; next MAIN 1.32: preferred, colored
Changes since revision 1.31.10.2: +2 -3 lines
Sync with HEAD.

Revision 1.24.2.3: download - view: text, markup, annotated - select for diffs
Sat Oct 27 11:34:35 2007 UTC (17 years, 1 month ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.24.2.2: preferred, colored; branchpoint 1.24: preferred, colored
Changes since revision 1.24.2.2: +2 -8 lines
sync with head.

Revision 1.34: download - view: text, markup, annotated - select for diffs
Thu Oct 25 19:32:15 2007 UTC (17 years, 1 month ago) by plunky
Branches: MAIN
CVS tags: yamt-kmem-base3, yamt-kmem-base2, yamt-kmem-base, yamt-kmem, vmlocking2-base3, vmlocking2-base2, vmlocking2-base1, vmlocking2, vmlocking-nbase, reinoud-bufcleanup-nbase, reinoud-bufcleanup-base, matt-armv6-base, jmcneill-pm-base, jmcneill-base, cube-autoconf-base, cube-autoconf, bouyer-xeni386-nbase, bouyer-xeni386-merge1, bouyer-xeni386-base, bouyer-xeni386, bouyer-xenamd64-base2, bouyer-xenamd64-base
Branch point for: mjf-devfs
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +2 -3 lines
remove #include <usbhid.h> as its not needed

Revision 1.30.2.2: download - view: text, markup, annotated - select for diffs
Tue Oct 9 13:42:10 2007 UTC (17 years, 2 months ago) by ad
Branches: vmlocking
Diff to: previous 1.30.2.1: preferred, colored; next MAIN 1.31: preferred, colored
Changes since revision 1.30.2.1: +77 -72 lines
Sync with head.

Revision 1.31.10.2: download - view: text, markup, annotated - select for diffs
Tue Oct 2 18:28:43 2007 UTC (17 years, 2 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.31.10.1: preferred, colored; branchpoint 1.31: preferred, colored
Changes since revision 1.31.10.1: +2 -7 lines
Sync with HEAD.

Revision 1.33: download - view: text, markup, annotated - select for diffs
Thu Sep 13 21:01:48 2007 UTC (17 years, 3 months ago) by riz
Branches: MAIN
CVS tags: yamt-x86pmap-base4, yamt-x86pmap-base3, yamt-x86pmap-base2, yamt-x86pmap-base, yamt-x86pmap, vmlocking-base
Branch point for: bouyer-xenamd64
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +2 -7 lines
Remove a comment that is no longer true - this driver does, in fact,
support multiple serial ports.

Revision 1.31.10.1: download - view: text, markup, annotated - select for diffs
Mon Sep 3 16:48:43 2007 UTC (17 years, 3 months ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +77 -67 lines
Sync with HEAD.

Revision 1.24.2.2: download - view: text, markup, annotated - select for diffs
Mon Sep 3 14:39:11 2007 UTC (17 years, 3 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.24.2.1: preferred, colored; branchpoint 1.24: preferred, colored
Changes since revision 1.24.2.1: +78 -70 lines
sync with head.

Revision 1.31.6.1: download - view: text, markup, annotated - select for diffs
Mon Sep 3 10:22:03 2007 UTC (17 years, 3 months ago) by skrll
Branches: nick-csl-alignment
Diff to: previous 1.31: preferred, colored; next MAIN 1.32: preferred, colored
Changes since revision 1.31: +77 -67 lines
Sync with HEAD.

Revision 1.32: download - view: text, markup, annotated - select for diffs
Sun Sep 2 22:35:25 2007 UTC (17 years, 3 months ago) by riz
Branches: MAIN
CVS tags: nick-csl-alignment-base5
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +77 -67 lines
Properly support both ports of the FTDI 2232C.  This allows me to
use all 16 ports of my USB-16COM-RM adapter.  I also verified that
single-port units still work as expected.

Revision 1.30.4.1: download - view: text, markup, annotated - select for diffs
Wed Jul 11 20:08:38 2007 UTC (17 years, 5 months ago) by mjf
Branches: mjf-ufs-trans
Diff to: previous 1.30: preferred, colored; next MAIN 1.31: preferred, colored
Changes since revision 1.30: +2 -5 lines
Sync with head.

Revision 1.29.8.2: download - view: text, markup, annotated - select for diffs
Thu Jun 21 15:15:57 2007 UTC (17 years, 5 months ago) by itohy
Branches: itohy-usb1
Diff to: previous 1.29.8.1: preferred, colored; branchpoint 1.29: preferred, colored; next MAIN 1.30: preferred, colored
Changes since revision 1.29.8.1: +1 -0 lines
Pullup 1.30: more model

Revision 1.29.8.1: download - view: text, markup, annotated - select for diffs
Mon Jun 18 13:48:13 2007 UTC (17 years, 5 months ago) by itohy
Branches: itohy-usb1
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +4 -2 lines
Pullup 1.31 (attach driver per interface) with #ifdef USB_USE_IFATTACH.

Revision 1.29.4.2: download - view: text, markup, annotated - select for diffs
Sat Mar 24 14:55:50 2007 UTC (17 years, 8 months ago) by yamt
Branches: yamt-idlelwp
Diff to: previous 1.29.4.1: preferred, colored; branchpoint 1.29: preferred, colored; next MAIN 1.30: preferred, colored
Changes since revision 1.29.4.1: +2 -5 lines
sync with head.

Revision 1.30.2.1: download - view: text, markup, annotated - select for diffs
Tue Mar 13 16:50:42 2007 UTC (17 years, 9 months ago) by ad
Branches: vmlocking
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +2 -5 lines
Sync with head.

Revision 1.31: download - view: text, markup, annotated - select for diffs
Tue Mar 13 13:51:55 2007 UTC (17 years, 9 months ago) by drochner
Branches: MAIN
CVS tags: yamt-idlelwp-base8, thorpej-atomic-base, thorpej-atomic, reinoud-bufcleanup, nick-csl-alignment-base, mjf-ufs-trans-base, matt-mips64-base, matt-mips64, hpcarm-cleanup
Branch point for: nick-csl-alignment, matt-armv6, jmcneill-pm
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +2 -5 lines
Introduce different autoconf interface attributes for USB drivers
matching (and handling) a whole device and those which match an
interface only. This will allow to enforce some rules, eg that
the former don't use interface information for matching or that the
latter don't modify global device state.
The previous way left too much freedom do the drivers which led to
inconsistencies and abuse.
For now, I've not changed locators and submatch rules, this will
happen later.
There should not be any change in behaviour, except in the case of
some drivers which did behave inconsistently:
if_atu, if_axe, uep: matched the configured device in the interface
 stage, but did configuration again. I've converted them to match
 in the device stage.
ustir, utoppy: matched in the interface stage, but only against
 vendor/device information, and used any configuration/interface
 without checking. Changed to match in device stage, and added
 some simple code to configure and use the first interface.
If you have one of those devices, please test!

Revision 1.29.4.1: download - view: text, markup, annotated - select for diffs
Mon Mar 12 05:57:31 2007 UTC (17 years, 9 months ago) by rmind
Branches: yamt-idlelwp
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +3 -2 lines
Sync with HEAD.

Revision 1.23.10.1: download - view: text, markup, annotated - select for diffs
Sat Mar 10 11:44:24 2007 UTC (17 years, 9 months ago) by bouyer
Branches: netbsd-3
Diff to: previous 1.23: preferred, colored; next MAIN 1.24: preferred, colored
Changes since revision 1.23: +3 -2 lines
Pull up following revision(s) (requested by riz in ticket #1677):
	sys/dev/usb/usbdevs: revision 1.461
	sys/dev/usb/usbdevs.h: regen
	sys/dev/usb/usbdevs_data.h: regen
	sys/dev/usb/uftdi.c: revision 1.30
Add FTDI "Serial 2232C" product ID
Match the FTDI "Serial 2232C" chip;  this allows a 16-port usb->serial
device from SerialGear I have to work.

Revision 1.29.2.1: download - view: text, markup, annotated - select for diffs
Thu Mar 8 23:39:42 2007 UTC (17 years, 9 months ago) by bouyer
Branches: netbsd-4
CVS tags: wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, netbsd-4-0-RELEASE, netbsd-4-0-RC5, netbsd-4-0-RC4, netbsd-4-0-RC3, netbsd-4-0-RC2, netbsd-4-0-RC1, netbsd-4-0-1-RELEASE, netbsd-4-0, matt-nb4-arm-base, matt-nb4-arm
Diff to: previous 1.29: preferred, colored; next MAIN 1.30: preferred, colored
Changes since revision 1.29: +3 -2 lines
Pull up following revision(s) (requested by riz in ticket #497):
	sys/dev/usb/usbdevs: revision 1.461
	sys/dev/usb/uftdi.c: revision 1.30
Add FTDI "Serial 2232C" product ID
Match the FTDI "Serial 2232C" chip;  this allows a 16-port usb->serial
device from SerialGear I have to work.

Revision 1.30: download - view: text, markup, annotated - select for diffs
Thu Mar 8 23:21:08 2007 UTC (17 years, 9 months ago) by riz
Branches: MAIN
Branch point for: vmlocking, mjf-ufs-trans
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +3 -2 lines
Match the FTDI "Serial 2232C" chip;  this allows a 16-port usb->serial
device from SerialGear I have to work.

Revision 1.24.2.1: download - view: text, markup, annotated - select for diffs
Sat Dec 30 20:49:39 2006 UTC (17 years, 11 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +52 -31 lines
sync with head.

Revision 1.25.22.2: download - view: text, markup, annotated - select for diffs
Sun Dec 10 07:18:17 2006 UTC (18 years ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.25.22.1: preferred, colored; branchpoint 1.25: preferred, colored; next MAIN 1.26: preferred, colored
Changes since revision 1.25.22.1: +4 -4 lines
sync with head.

Revision 1.25.20.1: download - view: text, markup, annotated - select for diffs
Sat Nov 18 21:34:51 2006 UTC (18 years ago) by ad
Branches: newlock2
Diff to: previous 1.25: preferred, colored; next MAIN 1.26: preferred, colored
Changes since revision 1.25: +52 -31 lines
Sync with head.

Revision 1.29: download - view: text, markup, annotated - select for diffs
Thu Nov 16 01:33:26 2006 UTC (18 years ago) by christos
Branches: MAIN
CVS tags: yamt-splraiseipl-base5, yamt-splraiseipl-base4, yamt-splraiseipl-base3, post-newlock2-merge, newlock2-nbase, newlock2-base, netbsd-4-base, itohy-usb1-base, ad-audiomp-base, ad-audiomp
Branch point for: yamt-idlelwp, netbsd-4, itohy-usb1
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +4 -4 lines
__unused removal on arguments; approved by core.

Revision 1.25.22.1: download - view: text, markup, annotated - select for diffs
Sun Oct 22 06:06:52 2006 UTC (18 years, 1 month ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +54 -33 lines
sync with head

Revision 1.28: download - view: text, markup, annotated - select for diffs
Thu Oct 12 01:31:59 2006 UTC (18 years, 2 months ago) by christos
Branches: MAIN
CVS tags: yamt-splraiseipl-base2
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +4 -4 lines
- sprinkle __unused on function decls.
- fix a couple of unused bugs
- no more -Wno-unused for i386

Revision 1.27: download - view: text, markup, annotated - select for diffs
Sun Oct 8 08:14:24 2006 UTC (18 years, 2 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +4 -2 lines
Added support for the following devices:

 * Matrix Orbital MX4/MX5 Series
 * Crystal Fontz CFA-635 LCD

Patch sent by Claus Andersen via PR kern/34753.

Revision 1.26: download - view: text, markup, annotated - select for diffs
Sun Sep 24 17:17:17 2006 UTC (18 years, 2 months ago) by christos
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +50 -31 lines
From Claus Andersen:
- change uftdi driver to use usb_lookup
- are more devices (from FreeBSD/OpenBSD)

Revision 1.25: download - view: text, markup, annotated - select for diffs
Sun Dec 11 12:24:01 2005 UTC (19 years ago) by christos
Branches: MAIN
CVS tags: yamt-uio_vmspace-base5, yamt-uio_vmspace, yamt-splraiseipl-base, yamt-pdpolicy-base9, yamt-pdpolicy-base8, yamt-pdpolicy-base7, yamt-pdpolicy-base6, yamt-pdpolicy-base5, yamt-pdpolicy-base4, yamt-pdpolicy-base3, yamt-pdpolicy-base2, yamt-pdpolicy-base, yamt-pdpolicy, simonb-timecounters-base, simonb-timecounters, simonb-timcounters-final, rpaulo-netinet-merge-pcb-base, rpaulo-netinet-merge-pcb, peter-altq-base, peter-altq, gdamore-uart-base, gdamore-uart, elad-kernelauth-base, elad-kernelauth, chap-midi-nbase, chap-midi-base, chap-midi, abandoned-netbsd-4-base, abandoned-netbsd-4
Branch point for: yamt-splraiseipl, newlock2
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +2 -2 lines
merge ktrace-lwp.

Revision 1.14.2.5: download - view: text, markup, annotated - select for diffs
Thu Nov 10 14:08:05 2005 UTC (19 years, 1 month ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.14.2.4: preferred, colored; next MAIN 1.15: preferred, colored
Changes since revision 1.14.2.4: +6 -5 lines
Sync with HEAD. Here we go again...

Revision 1.24: download - view: text, markup, annotated - select for diffs
Wed May 11 10:02:28 2005 UTC (19 years, 7 months ago) by augustss
Branches: MAIN
CVS tags: yamt-vop-base3, yamt-vop-base2, yamt-vop-base, yamt-vop, yamt-readahead-pervnode, yamt-readahead-perfile, yamt-readahead-base3, yamt-readahead-base2, yamt-readahead-base, yamt-readahead, thorpej-vnode-attr-base, thorpej-vnode-attr, ktrace-lwp-base
Branch point for: yamt-lazymbuf
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +6 -5 lines
Don't keep the devinfo string on the stack, instead use malloc/free.
This should cure some rare stack overflows.

Revision 1.14.2.4: download - view: text, markup, annotated - select for diffs
Sun Nov 14 08:15:57 2004 UTC (20 years ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.14.2.3: preferred, colored
Changes since revision 1.14.2.3: +7 -2 lines
Sync with HEAD.

Revision 1.23: download - view: text, markup, annotated - select for diffs
Fri Nov 5 13:53:29 2004 UTC (20 years, 1 month ago) by scw
Branches: MAIN
CVS tags: yamt-km-base4, yamt-km-base3, yamt-km-base2, yamt-km-base, yamt-km, netbsd-3-base, netbsd-3-1-RELEASE, netbsd-3-1-RC4, netbsd-3-1-RC3, netbsd-3-1-RC2, netbsd-3-1-RC1, netbsd-3-1-1-RELEASE, netbsd-3-1, netbsd-3-0-RELEASE, netbsd-3-0-RC6, netbsd-3-0-RC5, netbsd-3-0-RC4, netbsd-3-0-RC3, netbsd-3-0-RC2, netbsd-3-0-RC1, netbsd-3-0-3-RELEASE, netbsd-3-0-2-RELEASE, netbsd-3-0-1-RELEASE, netbsd-3-0, kent-audio2-base, kent-audio2, kent-audio1-beforemerge, kent-audio1-base, kent-audio1
Branch point for: netbsd-3
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +7 -2 lines
Match Sealevel Systems' uftdi-based USB <-> Serial adapter.
This is just an FT8U232AM with custom vendor/device IDs.

Revision 1.14.2.3: download - view: text, markup, annotated - select for diffs
Tue Sep 21 13:33:45 2004 UTC (20 years, 2 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.14.2.2: preferred, colored
Changes since revision 1.14.2.2: +2 -2 lines
Fix the sync with head I botched.

Revision 1.14.2.2: download - view: text, markup, annotated - select for diffs
Sat Sep 18 14:51:46 2004 UTC (20 years, 2 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.14.2.1: preferred, colored
Changes since revision 1.14.2.1: +4 -3 lines
Sync with HEAD.

Revision 1.22: download - view: text, markup, annotated - select for diffs
Mon Sep 13 12:55:49 2004 UTC (20 years, 3 months ago) by drochner
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +4 -3 lines
a round of autoconf cleanup:
-convert submatch() style functions (passed to config_search() or
 config_found_sm()) to the locator passing variants
-pass interface attributes in some cases
-make submatch() functions look uniformly as far as possible
-avoid macros which just hide cfdata members, and reduce dependencies
 on "locators.h"

Revision 1.14.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 3 10:51:33 2004 UTC (20 years, 4 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +15 -4 lines
Sync with HEAD

Revision 1.21: download - view: text, markup, annotated - select for diffs
Fri Apr 23 17:25:25 2004 UTC (20 years, 7 months ago) by itojun
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +3 -3 lines
use bounded string ops (snprintf, strl*)

Revision 1.20: download - view: text, markup, annotated - select for diffs
Wed Jan 28 21:50:28 2004 UTC (20 years, 10 months ago) by augustss
Branches: MAIN
CVS tags: netbsd-2-base, netbsd-2-1-RELEASE, netbsd-2-1-RC6, netbsd-2-1-RC5, netbsd-2-1-RC4, netbsd-2-1-RC3, netbsd-2-1-RC2, netbsd-2-1-RC1, netbsd-2-1, netbsd-2-0-base, netbsd-2-0-RELEASE, netbsd-2-0-RC5, netbsd-2-0-RC4, netbsd-2-0-RC3, netbsd-2-0-RC2, netbsd-2-0-RC1, netbsd-2-0-3-RELEASE, netbsd-2-0-2-RELEASE, netbsd-2-0-1-RELEASE, netbsd-2-0, netbsd-2
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +5 -3 lines
Add another FTDI device.  From FreeBSD.

Revision 1.19: download - view: text, markup, annotated - select for diffs
Mon Jan 5 13:49:40 2004 UTC (20 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +5 -3 lines
One more device.  From OpenBSD.

Revision 1.18: download - view: text, markup, annotated - select for diffs
Mon Jan 5 13:29:27 2004 UTC (20 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +4 -6 lines
Add another device.

Revision 1.17: download - view: text, markup, annotated - select for diffs
Sun Nov 23 18:17:58 2003 UTC (21 years ago) by augustss
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +9 -3 lines
Add another product.  From OpenBSD.

Revision 1.16: download - view: text, markup, annotated - select for diffs
Tue Oct 28 23:40:27 2003 UTC (21 years, 1 month ago) by mycroft
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +4 -3 lines
KNF.

Revision 1.15: download - view: text, markup, annotated - select for diffs
Sat Oct 25 18:28:31 2003 UTC (21 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +4 -2 lines
Fix uninitialized variable warnings.

Revision 1.14: download - view: text, markup, annotated - select for diffs
Sun Feb 23 04:20:07 2003 UTC (21 years, 9 months ago) by simonb
Branches: MAIN
Branch point for: ktrace-lwp
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +3 -4 lines
Remove assigned-to but not used variable.

Revision 1.6.2.5: download - view: text, markup, annotated - select for diffs
Fri Oct 18 02:44:31 2002 UTC (22 years, 1 month ago) by nathanw
Branches: nathanw_sa
CVS tags: nathanw_sa_end
Diff to: previous 1.6.2.4: preferred, colored; branchpoint 1.6: preferred, colored; next MAIN 1.7: preferred, colored
Changes since revision 1.6.2.4: +0 -1 lines
Catch up to -current.

Revision 1.6.4.4: download - view: text, markup, annotated - select for diffs
Thu Oct 10 18:42:36 2002 UTC (22 years, 2 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.6.4.3: preferred, colored; branchpoint 1.6: preferred, colored; next MAIN 1.7: preferred, colored
Changes since revision 1.6.4.3: +2 -3 lines
sync kqueue with -current; this includes merge of gehenna-devsw branch,
merge of i386 MP branch, and part of autoconf rototil work

Revision 1.13: download - view: text, markup, annotated - select for diffs
Mon Sep 23 05:51:23 2002 UTC (22 years, 2 months ago) by simonb
Branches: MAIN
CVS tags: nathanw_sa_before_merge, nathanw_sa_base, kqueue-beforemerge, kqueue-base, kqueue-aftermerge, gmcgarry_ucred_base, gmcgarry_ucred, gmcgarry_ctxsw_base, gmcgarry_ctxsw, fvdl_fs64_base
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -3 lines
Remove breaks after returns, unreachable returns and returns after
returns(!).

Revision 1.6.4.3: download - view: text, markup, annotated - select for diffs
Fri Sep 6 08:46:51 2002 UTC (22 years, 3 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.6.4.2: preferred, colored; branchpoint 1.6: preferred, colored
Changes since revision 1.6.4.2: +25 -7 lines
sync kqueue branch with HEAD

Revision 1.6.2.4: download - view: text, markup, annotated - select for diffs
Thu Aug 1 02:45:56 2002 UTC (22 years, 4 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.6.2.3: preferred, colored; branchpoint 1.6: preferred, colored
Changes since revision 1.6.2.3: +25 -7 lines
Catch up to -current.

Revision 1.10.2.2: download - view: text, markup, annotated - select for diffs
Sat Jul 20 11:35:10 2002 UTC (22 years, 4 months ago) by gehenna
Branches: gehenna-devsw
Diff to: previous 1.10.2.1: preferred, colored; branchpoint 1.10: preferred, colored; next MAIN 1.11: preferred, colored
Changes since revision 1.10.2.1: +21 -3 lines
catch up with -current.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Thu Jul 18 14:44:10 2002 UTC (22 years, 4 months ago) by scw
Branches: MAIN
CVS tags: gehenna-devsw-base
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +21 -3 lines
Add code to setup hardware or software flow control (or none at
all, if necessary) depending on the user-specified termios flags.

This allows the device to talk to DCEs which don't assert RTS
(i.e. dumb, 3-wire serial ports).

Revision 1.10.2.1: download - view: text, markup, annotated - select for diffs
Mon Jul 15 10:36:05 2002 UTC (22 years, 5 months ago) by gehenna
Branches: gehenna-devsw
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +6 -6 lines
catch up with -current.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Thu Jul 11 21:14:27 2002 UTC (22 years, 5 months ago) by augustss
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +6 -6 lines
Get rid of trailing white space.

Revision 1.6.4.2: download - view: text, markup, annotated - select for diffs
Sun Jun 23 17:49:06 2002 UTC (22 years, 5 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.6.4.1: preferred, colored; branchpoint 1.6: preferred, colored
Changes since revision 1.6.4.1: +68 -21 lines
catch up with -current on kqueue branch

Revision 1.6.2.3: download - view: text, markup, annotated - select for diffs
Thu Jun 20 03:46:54 2002 UTC (22 years, 5 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.6.2.2: preferred, colored; branchpoint 1.6: preferred, colored
Changes since revision 1.6.2.2: +68 -21 lines
Catch up to -current.

Revision 1.10: download - view: text, markup, annotated - select for diffs
Wed May 8 18:10:19 2002 UTC (22 years, 7 months ago) by scw
Branches: MAIN
CVS tags: netbsd-1-6-base, netbsd-1-6-RELEASE, netbsd-1-6-RC3, netbsd-1-6-RC2, netbsd-1-6-RC1, netbsd-1-6-PATCH002-RELEASE, netbsd-1-6-PATCH002-RC4, netbsd-1-6-PATCH002-RC3, netbsd-1-6-PATCH002-RC2, netbsd-1-6-PATCH002-RC1, netbsd-1-6-PATCH002, netbsd-1-6-PATCH001-RELEASE, netbsd-1-6-PATCH001-RC3, netbsd-1-6-PATCH001-RC2, netbsd-1-6-PATCH001-RC1, netbsd-1-6-PATCH001, netbsd-1-6
Branch point for: gehenna-devsw
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +68 -21 lines
Add support for FTDI USB->Serial adapters based on the FT8U232AM chip.
Changes inspired by the latest linux version of the driver.

This gets the dongle supplied with my HP Omnibook working (it has no
legacy com(4) ports).

Revision 1.6.4.1: download - view: text, markup, annotated - select for diffs
Thu Jan 10 19:58:55 2002 UTC (22 years, 11 months ago) by thorpej
Branches: kqueue
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +34 -2 lines
Sync kqueue branch with -current.

Revision 1.6.2.2: download - view: text, markup, annotated - select for diffs
Tue Jan 8 00:32:07 2002 UTC (22 years, 11 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.6.2.1: preferred, colored; branchpoint 1.6: preferred, colored
Changes since revision 1.6.2.1: +32 -3 lines
Catch up to -current.

Revision 1.9: download - view: text, markup, annotated - select for diffs
Mon Dec 17 14:34:37 2001 UTC (22 years, 11 months ago) by ichiro
Branches: MAIN
CVS tags: newlock-base, newlock, ifpoll-base, eeh-devprop-base, eeh-devprop
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -2 lines
Uoo
Make it compile.

Revision 1.8: download - view: text, markup, annotated - select for diffs
Mon Dec 17 14:31:02 2001 UTC (22 years, 11 months ago) by ichiro
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +31 -3 lines
support BREAK function,
keep a value of the last LCR.

Revision 1.6.2.1: download - view: text, markup, annotated - select for diffs
Wed Nov 14 19:16:16 2001 UTC (23 years, 1 month ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +4 -1 lines
Catch up to -current.

Revision 1.7: download - view: text, markup, annotated - select for diffs
Tue Nov 13 06:24:54 2001 UTC (23 years, 1 month ago) by lukem
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +4 -1 lines
add RCSIDs

Revision 1.3.2.4: download - view: text, markup, annotated - select for diffs
Sun Feb 11 19:16:25 2001 UTC (23 years, 10 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.3.2.3: preferred, colored; next MAIN 1.4: preferred, colored
Changes since revision 1.3.2.3: +9 -1 lines
Sync with HEAD.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Tue Jan 23 21:56:17 2001 UTC (23 years, 10 months ago) by augustss
Branches: MAIN
CVS tags: thorpej_scsipi_nbase, thorpej_scsipi_beforemerge, thorpej_scsipi_base, thorpej-mips-cache-base, thorpej-mips-cache, thorpej-devvp-base3, thorpej-devvp-base2, thorpej-devvp-base, thorpej-devvp, pre-chs-ubcperf, post-chs-ubcperf
Branch point for: nathanw_sa, kqueue
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -1 lines
Ad support for an extra message in the ucom attach code.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Tue Jan 23 14:04:13 2001 UTC (23 years, 10 months ago) by augustss
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +8 -1 lines
Make sure driver attach/detach events are generated in a consistent manner.

Revision 1.3.2.3: download - view: text, markup, annotated - select for diffs
Wed Dec 13 15:50:14 2000 UTC (24 years ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.3.2.2: preferred, colored
Changes since revision 1.3.2.2: +2 -2 lines
Sync with HEAD (for UBC fixes).

Revision 1.4: download - view: text, markup, annotated - select for diffs
Fri Dec 8 01:53:44 2000 UTC (24 years ago) by augustss
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -2 lines
Set the debug level to 0.

Revision 1.3.2.2: download - view: text, markup, annotated - select for diffs
Mon Nov 20 11:43:23 2000 UTC (24 years ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.3.2.1: preferred, colored
Changes since revision 1.3.2.1: +477 -0 lines
Update thorpej_scsipi to -current as of a month ago
A i386 GENERIC kernel compiles without the siop, ahc and bha drivers
(will be updated later). i386 IDE/ATAPI and ncr work, as well as
sparc/esp_sbus. alpha should work as well (untested yet).
siop, ahc and bha will be updated once I've updated the branch to current
-current, as well as machine-dependant code.

Revision 1.2.2.1: download - view: text, markup, annotated - select for diffs
Mon Sep 4 17:53:14 2000 UTC (24 years, 3 months ago) by augustss
Branches: netbsd-1-5
CVS tags: netbsd-1-5-RELEASE, netbsd-1-5-PATCH003, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2, netbsd-1-5-BETA
Diff to: previous 1.2: preferred, colored; next MAIN 1.3: preferred, colored
Changes since revision 1.2: +2 -2 lines
Pull up (approved by thorpej).

Handle output packet headers in a cleaner way.  From IWAMOTO Toshihiro
<iwamoto@sat.t.u-tokyo.ac.jp>, fixes kern/10573.

Revision 1.3.2.1
Sun Sep 3 19:15:45 2000 UTC (24 years, 3 months ago) by bouyer
Branches: thorpej_scsipi
FILE REMOVED
Changes since revision 1.3: +0 -477 lines
file uftdi.c was added on branch thorpej_scsipi on 2000-11-20 11:43:23 +0000

Revision 1.3: download - view: text, markup, annotated - select for diffs
Sun Sep 3 19:15:45 2000 UTC (24 years, 3 months ago) by augustss
Branches: MAIN
Branch point for: thorpej_scsipi
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +2 -2 lines
Handle output packet headers in a cleaner way.  From IWAMOTO Toshihiro
<iwamoto@sat.t.u-tokyo.ac.jp>, fixes kern/10573.

Revision 1.1.2.1: download - view: text, markup, annotated - select for diffs
Thu Jun 22 17:08:34 2000 UTC (24 years, 5 months ago) by minoura
Branches: minoura-xpg4dl
Diff to: previous 1.1: preferred, colored; next MAIN 1.2: preferred, colored
Changes since revision 1.1: +16 -43 lines
Sync w/ netbsd-1-5-base.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Thu Jun 1 14:28:59 2000 UTC (24 years, 6 months ago) by augustss
Branches: MAIN
CVS tags: netbsd-1-5-base, netbsd-1-5-ALPHA2
Branch point for: netbsd-1-5
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +16 -43 lines
Bring the coding style into the 80s, i.e., get rid of __P and use
ANSI prototypes and declarations.

Revision 1.1: download - view: text, markup, annotated - select for diffs
Fri Apr 14 14:51:22 2000 UTC (24 years, 8 months ago) by augustss
Branches: MAIN
CVS tags: minoura-xpg4dl-base
Branch point for: minoura-xpg4dl
Add driver for FTDI FT8U100AX serial adapter.
XXX This is still experimental and needs more work.

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

CVSweb <webmaster@jp.NetBSD.org>