CVS log for src/sys/arch/macppc/dev/ki2c.c
Up to [cvs.NetBSD.org] / src / sys / arch / macppc / dev
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.33: download - view: text, markup, annotated - select for diffs
Wed Jun 29 17:59:40 2022 UTC (2 years, 9 months ago) by mlelstv
Branches: MAIN
CVS tags: thorpej-ifq-base,
thorpej-ifq,
thorpej-altq-separation-base,
thorpej-altq-separation,
perseant-exfatfs-base-20240630,
perseant-exfatfs-base,
perseant-exfatfs,
netbsd-10-base,
netbsd-10-1-RELEASE,
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,
netbsd-10,
bouyer-sunxi-drm-base,
bouyer-sunxi-drm,
HEAD
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +12 -2
lines
Use old limit of 32 + 32 bytes to keep combining buffer on stack.
There are no devices on this platform that need more and for larger
values, the driver should be better rewritten.
Revision 1.32.2.4: download - view: text, markup, annotated - select for diffs
Sat Sep 11 17:22:35 2021 UTC (3 years, 7 months ago) by thorpej
Branches: thorpej-i2c-spi-conf2
Diff to: previous 1.32.2.3: preferred, colored; branchpoint 1.32: preferred, colored; next MAIN 1.33: preferred, colored
Changes since revision 1.32.2.3: +3 -3
lines
Add a devhandle_subclass() helper function to simplify the common case
and use it. Improve some comments.
Revision 1.32.2.3: download - view: text, markup, annotated - select for diffs
Sat Sep 11 14:47:06 2021 UTC (3 years, 7 months ago) by thorpej
Branches: thorpej-i2c-spi-conf2
Diff to: previous 1.32.2.2: preferred, colored; branchpoint 1.32: preferred, colored
Changes since revision 1.32.2.2: +5 -6
lines
Fix a memory leak if the "compatible" property is > 32 bytes.
Revision 1.32.2.2: download - view: text, markup, annotated - select for diffs
Fri Sep 10 15:45:28 2021 UTC (3 years, 7 months ago) by thorpej
Branches: thorpej-i2c-spi-conf2
Diff to: previous 1.32.2.1: preferred, colored; branchpoint 1.32: preferred, colored
Changes since revision 1.32.2.1: +2 -1
lines
Remove unnecessary references to i2c_attach_args::ia_prop and mark the ones
that remain as XXX.
Revision 1.32.2.1: download - view: text, markup, annotated - select for diffs
Mon Aug 9 00:30:08 2021 UTC (3 years, 8 months ago) by thorpej
Branches: thorpej-i2c-spi-conf2
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +363 -162
lines
Port over the changes from thorpej-i2c-spi-conf to thorpej-i2c-spi-conf2,
which is based on a newer HEAD revision.
Revision 1.32: download - view: text, markup, annotated - select for diffs
Sat Aug 7 16:18:57 2021 UTC (3 years, 8 months ago) by thorpej
Branches: MAIN
CVS tags: thorpej-i2c-spi-conf2-base
Branch point for: thorpej-i2c-spi-conf2
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +2 -2
lines
Merge thorpej-cfargs2.
Revision 1.31.8.1: download - view: text, markup, annotated - select for diffs
Wed Aug 4 02:39:49 2021 UTC (3 years, 8 months ago) by thorpej
Branches: thorpej-cfargs2
Diff to: previous 1.31: preferred, colored; next MAIN 1.32: preferred, colored
Changes since revision 1.31: +2 -2
lines
Adapt to CFARGS().
Revision 1.31.2.2: download - view: text, markup, annotated - select for diffs
Fri May 14 01:08:53 2021 UTC (3 years, 11 months ago) by thorpej
Branches: thorpej-i2c-spi-conf
Diff to: previous 1.31.2.1: preferred, colored; branchpoint 1.31: preferred, colored; next MAIN 1.32: preferred, colored
Changes since revision 1.31.2.1: +3 -4
lines
Move the bus/channel number for multi-channel / mux controllers out of
i2cbus_attach_args and stash it in the i2c_tag_t instead. This makes it
accessible to platform device tree code when enumerating devices.
Revision 1.31.2.1: download - view: text, markup, annotated - select for diffs
Sat May 8 21:58:12 2021 UTC (3 years, 11 months ago) by thorpej
Branches: thorpej-i2c-spi-conf
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +365 -162
lines
Adapt the Keywest i2c controller driver to the new i2c device enumeration
mechanism. We need to provide our own enumeration callback because these
controllers do not use the standard OpenFirmware bindings.
The Keywest controller supports 2 physical i2c busses on a single controller,
so we logically split it up that way now, rather than encoding the channel in
in the i2c address as was done previously.
Different systems have different I2C device tree topologies.
Some systems use a scheme like this:
/u3@0,f8000000/i2c@f8001000/temp-monitor@98
/u3@0,f8000000/i2c@f8001000/fan@15e
Here, we see the channel encoded in bit #8 of the address.
Other systems use a scheme like this:
/ht@0,f2000000/pci@4000,0,0/mac-io@7/i2c@18000/i2c-bus@0
/ht@0,f2000000/pci@4000,0,0/mac-io@7/i2c@18000/i2c-bus@0/codec@8c
/u4@0,f8000000/i2c@f8001000/i2c-bus@1
/u4@0,f8000000/i2c@f8001000/i2c-bus@1/temp-monitor@94
Here, a separate device tree node represents the channel.
Note that in BOTH cases, the I2C address of the devices are
shifted left by 1 (as it would be on the wire to leave room
for the read/write bit).
Revision 1.31: download - view: text, markup, annotated - select for diffs
Sat Apr 24 23:36:41 2021 UTC (3 years, 11 months ago) by thorpej
Branches: MAIN
CVS tags: thorpej-i2c-spi-conf-base,
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-i2c-spi-conf,
thorpej-cfargs2
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +2 -2
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.30.4.1: download - view: text, markup, annotated - select for diffs
Tue Mar 23 07:14:48 2021 UTC (4 years ago) by thorpej
Branches: thorpej-cfargs
Diff to: previous 1.30: preferred, colored; next MAIN 1.31: preferred, colored
Changes since revision 1.30: +2 -2
lines
Convert config_found_ia() call sites where the device only carries
a single interface attribute to bare config_found() calls.
Revision 1.30: download - view: text, markup, annotated - select for diffs
Fri Jun 12 06:44:57 2020 UTC (4 years, 10 months ago) by macallan
Branches: MAIN
CVS tags: thorpej-futex-base,
thorpej-futex,
thorpej-cfargs-base
Branch point for: thorpej-cfargs
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +4 -4
lines
more proplib API catchup
Revision 1.25.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 13 08:03:58 2020 UTC (5 years ago) by martin
Branches: phil-wifi
Diff to: previous 1.25: preferred, colored; next MAIN 1.26: preferred, colored
Changes since revision 1.25: +54 -62
lines
Mostly merge changes from HEAD upto 20200411
Revision 1.27.2.1: download - view: text, markup, annotated - select for diffs
Fri Jan 17 21:47:26 2020 UTC (5 years, 3 months ago) by ad
Branches: ad-namecache
Diff to: previous 1.27: preferred, colored; next MAIN 1.28: preferred, colored
Changes since revision 1.27: +49 -43
lines
Sync with head.
Revision 1.29: download - view: text, markup, annotated - select for diffs
Thu Jan 9 18:49:06 2020 UTC (5 years, 3 months ago) by macallan
Branches: MAIN
CVS tags: phil-wifi-20200421,
phil-wifi-20200411,
phil-wifi-20200406,
is-mlppp-base,
is-mlppp,
bouyer-xenpvh-base2,
bouyer-xenpvh-base1,
bouyer-xenpvh-base,
bouyer-xenpvh,
ad-namecache-base3,
ad-namecache-base2,
ad-namecache-base1
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +2 -1
lines
defflag KI2C_DEBUG
Revision 1.28: download - view: text, markup, annotated - select for diffs
Thu Jan 9 18:47:46 2020 UTC (5 years, 3 months ago) by macallan
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +48 -43
lines
if we have more than one i2c-bus node, look for children on both
now we find the light sensor in my shiny new toy
Revision 1.27: download - view: text, markup, annotated - select for diffs
Sun Dec 22 23:23:30 2019 UTC (5 years, 3 months ago) by thorpej
Branches: MAIN
CVS tags: ad-namecache-base
Branch point for: ad-namecache
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +2 -28
lines
Cleanup i2c bus acquire / release, centralizing all of the logic into
iic_acquire_bus() / iic_release_bus(). "acquire" and "release" hooks
no longer need to be provided by back-end controller drivers (only if
they need special handling, e.g. powering on the i2c controller).
This results in the removal of a bunch of rendundant code from each
back-end controller driver.
Assert that we are not in hard interrupt context in iic_acquire_bus(),
iic_exec(), and iic_release_bus().
Revision 1.26: download - view: text, markup, annotated - select for diffs
Thu Aug 15 22:35:39 2019 UTC (5 years, 8 months ago) by macallan
Branches: MAIN
CVS tags: phil-wifi-20191119
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +16 -4
lines
pass sensor location info to drivers if we can find it
Revision 1.24.2.1: download - view: text, markup, annotated - select for diffs
Thu Mar 15 09:12:03 2018 UTC (7 years, 1 month ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.24: preferred, colored; next MAIN 1.25: preferred, colored
Changes since revision 1.24: +20 -13
lines
Synch with HEAD
Revision 1.25: download - view: text, markup, annotated - select for diffs
Thu Mar 8 21:53:20 2018 UTC (7 years, 1 month ago) by macallan
Branches: MAIN
CVS tags: phil-wifi-base,
phil-wifi-20190609,
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,
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,
netbsd-9,
isaki-audio2-base,
isaki-audio2
Branch point for: phil-wifi
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +20 -13
lines
use channel info and set MODE bits accordingly instead of hoping OF set them
for us
now iic devices on different channels work properly
Revision 1.24: download - view: text, markup, annotated - select for diffs
Wed Jan 24 17:21:03 2018 UTC (7 years, 2 months ago) by macallan
Branches: MAIN
CVS tags: pgoyette-compat-base
Branch point for: pgoyette-compat
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +5 -5
lines
note to self: OF_getprop() returns -1 on error
now this works properly on sevan's iMac G4
Revision 1.18.12.1: download - view: text, markup, annotated - select for diffs
Sun Dec 3 11:36:25 2017 UTC (7 years, 4 months ago) by jdolecek
Branches: tls-maxphys
Diff to: previous 1.18: preferred, colored; next MAIN 1.19: preferred, colored
Changes since revision 1.18: +82 -81
lines
update from HEAD
Revision 1.23: download - view: text, markup, annotated - select for diffs
Wed Sep 27 22:10:19 2017 UTC (7 years, 6 months ago) by macallan
Branches: MAIN
CVS tags: tls-maxphys-base-20171202
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -2
lines
pass the right OF node to i2c devices
Revision 1.22: download - view: text, markup, annotated - select for diffs
Fri Sep 22 03:09:51 2017 UTC (7 years, 6 months ago) by macallan
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +48 -59
lines
follow sparc64 and do direct config for i2c-devices
while there, make sure we play nice with smbus single byte reads
Revision 1.21: download - view: text, markup, annotated - select for diffs
Fri Sep 15 21:34:42 2017 UTC (7 years, 7 months ago) by macallan
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +14 -12
lines
bus_space-ify
Revision 1.20: download - view: text, markup, annotated - select for diffs
Tue Sep 5 17:21:09 2017 UTC (7 years, 7 months ago) by macallan
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +26 -17
lines
first step to clean up & bus-spacification:
- use i2c addresses with the direction bit shifted out in iic_exec and when
attaching drivers so things attaching to iic* have a chance of working
- add an empty i2c-devices prop_array_t to keep drivers we don't want from
attaching to iic*
- printf -> DPRINTF / aprint_*
- usa mapiodev() for now to make this work on G5
Revision 1.18.30.1: download - view: text, markup, annotated - select for diffs
Sat Mar 19 11:30:02 2016 UTC (9 years, 1 month ago) by skrll
Branches: nick-nhusb
Diff to: previous 1.18: preferred, colored; next MAIN 1.19: preferred, colored
Changes since revision 1.18: +2 -1
lines
Sync with HEAD
Revision 1.19: download - view: text, markup, annotated - select for diffs
Sun Feb 14 19:54:20 2016 UTC (9 years, 2 months ago) by chs
Branches: MAIN
CVS tags: prg-localcount2-base3,
prg-localcount2-base2,
prg-localcount2-base1,
prg-localcount2-base,
prg-localcount2,
pgoyette-localcount-base,
pgoyette-localcount-20170426,
pgoyette-localcount-20170320,
pgoyette-localcount-20170107,
pgoyette-localcount-20161104,
pgoyette-localcount-20160806,
pgoyette-localcount-20160726,
pgoyette-localcount,
perseant-stdc-iso10646-base,
perseant-stdc-iso10646,
nick-nhusb-base-20170825,
nick-nhusb-base-20170204,
nick-nhusb-base-20161204,
nick-nhusb-base-20161004,
nick-nhusb-base-20160907,
nick-nhusb-base-20160529,
nick-nhusb-base-20160422,
nick-nhusb-base-20160319,
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,
localcount-20160914,
jdolecek-ncq-base,
jdolecek-ncq,
bouyer-socketcan-base1,
bouyer-socketcan-base,
bouyer-socketcan
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -1
lines
zero the i2c_attach_args structure before filling it in.
fixes occasional crashes in iic_attach().
Revision 1.18: download - view: text, markup, annotated - select for diffs
Tue Jul 26 08:36:02 2011 UTC (13 years, 8 months ago) by macallan
Branches: MAIN
CVS tags: yamt-pagecache-tag8,
yamt-pagecache-base9,
yamt-pagecache-base8,
yamt-pagecache-base7,
yamt-pagecache-base6,
yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
yamt-pagecache,
tls-maxphys-base,
tls-earlyentropy-base,
tls-earlyentropy,
rmind-smpnet-nbase,
rmind-smpnet-base,
rmind-smpnet,
riastradh-xf86-video-intel-2-7-1-pre-2-21-15,
riastradh-drm2-base3,
riastradh-drm2-base2,
riastradh-drm2-base1,
riastradh-drm2-base,
riastradh-drm2,
nick-nhusb-base-20151226,
nick-nhusb-base-20150921,
nick-nhusb-base-20150606,
nick-nhusb-base-20150406,
nick-nhusb-base,
netbsd-7-nhusb-base-20170116,
netbsd-7-nhusb-base,
netbsd-7-nhusb,
netbsd-7-base,
netbsd-7-2-RELEASE,
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,
netbsd-7,
netbsd-6-base,
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,
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,
netbsd-6,
matt-nb6-plus-nbase,
matt-nb6-plus-base,
matt-nb6-plus,
khorben-n900,
jmcneill-usbmp-pre-base2,
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,
jmcneill-usbmp-base,
jmcneill-usbmp,
jmcneill-audiomp3-base,
jmcneill-audiomp3,
agc-symver-base,
agc-symver
Branch point for: tls-maxphys,
nick-nhusb
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +6 -5
lines
finish device_t-ification
Revision 1.16.6.1: download - view: text, markup, annotated - select for diffs
Thu Jun 23 14:19:20 2011 UTC (13 years, 9 months ago) by cherry
Branches: cherry-xenmp
Diff to: previous 1.16: preferred, colored; next MAIN 1.17: preferred, colored
Changes since revision 1.16: +6 -6
lines
Catchup with rmind-uvmplock merge.
Revision 1.17: download - view: text, markup, annotated - select for diffs
Sat Jun 18 08:08:28 2011 UTC (13 years, 10 months ago) by matt
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +6 -6
lines
struct device * -> device_t
struct cfdata * -> cfdata_t
use device accessors, use device_private.
some softc/device_t splits (macppc needs a bunch more)
aprint*_dev used considerably more
Revision 1.15.4.1: download - view: text, markup, annotated - select for diffs
Sat Mar 5 20:50:58 2011 UTC (14 years, 1 month ago) by rmind
Branches: rmind-uvmplock
Diff to: previous 1.15: preferred, colored; next MAIN 1.16: preferred, colored
Changes since revision 1.15: +1 -2
lines
sync with head
Revision 1.16: download - view: text, markup, annotated - select for diffs
Mon Dec 20 00:25:37 2010 UTC (14 years, 4 months ago) by matt
Branches: MAIN
CVS tags: uebayasi-xip-base7,
rmind-uvmplock-nbase,
rmind-uvmplock-base,
matt-mips64-premerge-20101231,
jym-xensuspend-nbase,
jym-xensuspend-base,
jruoho-x86intr-base,
jruoho-x86intr,
cherry-xenmp-base,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2
Branch point for: cherry-xenmp
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +1 -2
lines
Move counting of faults, traps, intrs, soft[intr]s, syscalls, and nswtch
from uvmexp to per-cpu cpu_data and move them to 64bits. Remove unneeded
includes of <uvm/uvm_extern.h> and/or <uvm/uvm.h>.
Revision 1.12.2.1: download - view: text, markup, annotated - select for diffs
Wed May 13 17:18:01 2009 UTC (15 years, 11 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.12: preferred, colored; next MAIN 1.13: preferred, colored
Changes since revision 1.12: +16 -47
lines
Sync with HEAD.
Commit is split, to avoid a "too many arguments" protocol error.
Revision 1.11.16.1: download - view: text, markup, annotated - select for diffs
Mon May 4 08:11:28 2009 UTC (15 years, 11 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.11: preferred, colored; next MAIN 1.12: preferred, colored
Changes since revision 1.11: +58 -49
lines
sync with head.
Revision 1.11.24.2: download - view: text, markup, annotated - select for diffs
Tue Apr 28 07:34:19 2009 UTC (15 years, 11 months ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.11.24.1: preferred, colored; branchpoint 1.11: preferred, colored; next MAIN 1.12: preferred, colored
Changes since revision 1.11.24.1: +16 -47
lines
Sync with HEAD.
Revision 1.15: download - view: text, markup, annotated - select for diffs
Sat Mar 14 21:04:11 2009 UTC (16 years, 1 month ago) by dsl
Branches: MAIN
CVS tags: yamt-nfs-mp-base9,
yamt-nfs-mp-base8,
yamt-nfs-mp-base7,
yamt-nfs-mp-base6,
yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
yamt-nfs-mp-base3,
yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base6,
uebayasi-xip-base5,
uebayasi-xip-base4,
uebayasi-xip-base3,
uebayasi-xip-base2,
uebayasi-xip-base1,
uebayasi-xip-base,
uebayasi-xip,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base,
matt-premerge-20091211,
jymxensuspend-base
Branch point for: rmind-uvmplock
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +4 -13
lines
ANSIfy another 1261 function definitions.
The only ones left in sys are beyond by sed script!
(or in sys/dist or sys/external)
Mostly they have function pointer parameters.
Revision 1.14: download - view: text, markup, annotated - select for diffs
Sat Mar 14 15:36:09 2009 UTC (16 years, 1 month ago) by dsl
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +12 -34
lines
Change about 4500 of the K&R function definitions to ANSI ones.
There are still about 1600 left, but they have ',' or /* ... */
in the actual variable definitions - which my awk script doesn't handle.
There are also many that need () -> (void).
(The script does handle misordered arguments.)
Revision 1.13: download - view: text, markup, annotated - select for diffs
Sat Mar 14 14:46:01 2009 UTC (16 years, 1 month ago) by dsl
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -2
lines
Remove all the __P() from sys (excluding sys/dist)
Diff checked with grep and MK1 eyeball.
i386 and amd64 GENERIC and sys still build.
Revision 1.11.24.1: download - view: text, markup, annotated - select for diffs
Tue Mar 3 18:29:02 2009 UTC (16 years, 1 month ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +43 -3
lines
Sync with HEAD.
Revision 1.12: download - view: text, markup, annotated - select for diffs
Sun Feb 8 01:13:39 2009 UTC (16 years, 2 months ago) by pgoyette
Branches: MAIN
CVS tags: nick-hppapmap-base2
Branch point for: jym-xensuspend
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +43 -3
lines
Avoid asking the controller to transfer zero bytes of data, since we have
no clue if this works or not. This prevents the i2c quick_{read,write}
protocols from working, but the only place those protocols are used is in
the code that enumerates the i2c bus and that just doesn't make sense for
ki2c anyway.
While here, make sure that i2c send_{byte,word} operations will work even
if the caller provides the cmd (ie, register to modify) and the data in
separate args. This is the normal calling sequence for iic_exec() routines
and will enable dbcool (4) driver to update device registers.
OK'd macallan@
Revision 1.8.34.2: download - view: text, markup, annotated - select for diffs
Wed Jan 9 01:47:09 2008 UTC (17 years, 3 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.8.34.1: preferred, colored; branchpoint 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8.34.1: +6 -4
lines
sync with HEAD
Revision 1.8.32.3: download - view: text, markup, annotated - select for diffs
Sun Dec 9 19:35:35 2007 UTC (17 years, 4 months ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.8.32.2: preferred, colored; branchpoint 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8.32.2: +6 -4
lines
Sync with HEAD.
Revision 1.8.18.1: download - view: text, markup, annotated - select for diffs
Sun Dec 9 16:03:55 2007 UTC (17 years, 4 months ago) by reinoud
Branches: reinoud-bufcleanup
Diff to: previous 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8: +6 -4
lines
Pullup to HEAD
Revision 1.10.2.1: download - view: text, markup, annotated - select for diffs
Sat Dec 8 18:17:20 2007 UTC (17 years, 4 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.10: preferred, colored; next MAIN 1.11: preferred, colored
Changes since revision 1.10: +6 -4
lines
Sync with HEAD.
Revision 1.10.4.1: download - view: text, markup, annotated - select for diffs
Sat Dec 8 17:56:25 2007 UTC (17 years, 4 months ago) by ad
Branches: vmlocking2
Diff to: previous 1.10: preferred, colored; next MAIN 1.11: preferred, colored
Changes since revision 1.10: +6 -4
lines
Sync with head.
Revision 1.2.2.4: download - view: text, markup, annotated - select for diffs
Fri Dec 7 17:25:15 2007 UTC (17 years, 4 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.2.2.3: preferred, colored; next MAIN 1.3: preferred, colored
Changes since revision 1.2.2.3: +6 -4
lines
sync with head
Revision 1.11: download - view: text, markup, annotated - select for diffs
Thu Dec 6 17:00:33 2007 UTC (17 years, 4 months ago) by ad
Branches: MAIN
CVS tags: yamt-pf42-baseX,
yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
yamt-pf42-base,
yamt-pf42,
yamt-nfs-mp-base2,
yamt-nfs-mp-base,
yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
yamt-kmem-base3,
yamt-kmem-base2,
yamt-kmem-base,
yamt-kmem,
wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
wrstuden-revivesa,
vmlocking2-base3,
vmlocking2-base2,
simonb-wapbl-nbase,
simonb-wapbl-base,
simonb-wapbl,
reinoud-bufcleanup-nbase,
nick-net80211-sync-base,
nick-net80211-sync,
netbsd-5-base,
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,
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,
netbsd-5,
mjf-devfs2-base,
mjf-devfs2,
mjf-devfs-base,
matt-nb5-pq3-base,
matt-nb5-pq3,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-premerge-20091211,
matt-nb5-mips64-k15,
matt-nb5-mips64,
matt-nb4-mips64-k7-u2a-k9b,
matt-mips64-base2,
matt-armv6-nbase,
matt-armv6-base,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
keiichi-mipv6,
jmcneill-pm-base,
hpcarm-cleanup-nbase,
hpcarm-cleanup-base,
haad-nbase2,
haad-dm-base2,
haad-dm-base1,
haad-dm-base,
haad-dm,
cube-autoconf-base,
cube-autoconf,
bouyer-xeni386-nbase,
bouyer-xeni386-merge1,
bouyer-xeni386-base,
bouyer-xeni386,
ad-socklock-base1,
ad-audiomp2-base,
ad-audiomp2
Branch point for: yamt-nfs-mp,
nick-hppapmap
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +6 -4
lines
lockmgr -> mutex
Revision 1.8.34.1: download - view: text, markup, annotated - select for diffs
Tue Nov 6 23:18:37 2007 UTC (17 years, 5 months ago) by matt
Branches: matt-armv6
CVS tags: matt-armv6-prevmlocking
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +18 -7
lines
sync with HEAD
Revision 1.2.2.3: download - view: text, markup, annotated - select for diffs
Sat Oct 27 11:27:03 2007 UTC (17 years, 5 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.2.2.2: preferred, colored
Changes since revision 1.2.2.2: +18 -7
lines
sync with head.
Revision 1.8.32.2: download - view: text, markup, annotated - select for diffs
Fri Oct 26 15:42:47 2007 UTC (17 years, 5 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.8.32.1: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.32.1: +16 -4
lines
Sync with HEAD.
Follow the merge of pmap.c on i386 and amd64 and move
pmap_init_tmp_pgtbl into arch/x86/x86/pmap.c. Modify the ACPI wakeup
code to restore CR4 before jumping back into kernel space as the large
page option might cover that.
Revision 1.9.2.1: download - view: text, markup, annotated - select for diffs
Thu Oct 25 22:36:01 2007 UTC (17 years, 5 months ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.9: preferred, colored; next MAIN 1.10: preferred, colored
Changes since revision 1.9: +16 -4
lines
Sync with HEAD.
Revision 1.8.14.2: download - view: text, markup, annotated - select for diffs
Tue Oct 23 20:13:20 2007 UTC (17 years, 6 months ago) by ad
Branches: vmlocking
Diff to: previous 1.8.14.1: preferred, colored; branchpoint 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8.14.1: +16 -4
lines
Sync with head.
Revision 1.8.36.2: download - view: text, markup, annotated - select for diffs
Thu Oct 18 08:32:08 2007 UTC (17 years, 6 months ago) by yamt
Branches: yamt-x86pmap
Diff to: previous 1.8.36.1: preferred, colored; branchpoint 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8.36.1: +16 -4
lines
sync with head.
Revision 1.10: download - view: text, markup, annotated - select for diffs
Wed Oct 17 19:55:18 2007 UTC (17 years, 6 months ago) by garbled
Branches: MAIN
CVS tags: yamt-x86pmap-base4,
vmlocking2-base1,
vmlocking-nbase,
reinoud-bufcleanup-base,
jmcneill-base,
bouyer-xenamd64-base2,
bouyer-xenamd64-base
Branch point for: vmlocking2,
mjf-devfs
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +16 -4
lines
Merge the ppcoea-renovation branch to HEAD.
This branch was a major cleanup and rototill of many of the various OEA
cpu based PPC ports that focused on sharing as much code as possible
between the various ports to eliminate near-identical copies of files in
every tree. Additionally there is a new PIC system that unifies the
interface to interrupt code for all different OEA ppc arches. The work
for this branch was done by a variety of people, too long to list here.
TODO:
bebox still needs work to complete the transition to -renovation.
ofppc still needs a bunch of work, which I will be looking at.
ev64260 still needs to be renovated
amigappc was not attempted.
NOTES:
pmppc was removed as an arch, and moved to a evbppc target.
Revision 1.8.14.1: download - view: text, markup, annotated - select for diffs
Tue Oct 9 13:38:10 2007 UTC (17 years, 6 months ago) by ad
Branches: vmlocking
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -4
lines
Sync with head.
Revision 1.8.36.1: download - view: text, markup, annotated - select for diffs
Sat Oct 6 15:35:09 2007 UTC (17 years, 6 months ago) by yamt
Branches: yamt-x86pmap
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -4
lines
sync with head.
Revision 1.8.22.2: download - view: text, markup, annotated - select for diffs
Wed Oct 3 19:24:14 2007 UTC (17 years, 6 months ago) by garbled
Branches: ppcoea-renovation
Diff to: previous 1.8.22.1: preferred, colored; branchpoint 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8.22.1: +4 -3
lines
Sync with HEAD
Revision 1.8.32.1: download - view: text, markup, annotated - select for diffs
Tue Oct 2 18:27:31 2007 UTC (17 years, 6 months ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -4
lines
Sync with HEAD.
Revision 1.9: download - view: text, markup, annotated - select for diffs
Thu Sep 27 08:49:33 2007 UTC (17 years, 6 months ago) by dogcow
Branches: MAIN
CVS tags: yamt-x86pmap-base3,
yamt-x86pmap-base2,
vmlocking-base,
ppcoea-renovation-base
Branch point for: bouyer-xenamd64
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -4
lines
struct cfattach -> CFATTACH_DECL; compiles again.
Revision 1.8.22.1: download - view: text, markup, annotated - select for diffs
Thu Sep 27 07:13:54 2007 UTC (17 years, 6 months ago) by macallan
Branches: ppcoea-renovation
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +18 -8
lines
use CFATTACH_DECL()
Revision 1.2.2.2: download - view: text, markup, annotated - select for diffs
Sat Dec 30 20:46:26 2006 UTC (18 years, 3 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.2.2.1: preferred, colored
Changes since revision 1.2.2.1: +3 -4
lines
sync with head.
Revision 1.6.4.1: download - view: text, markup, annotated - select for diffs
Sat Sep 9 02:41:05 2006 UTC (18 years, 7 months ago) by rpaulo
Branches: rpaulo-netinet-merge-pcb
Diff to: previous 1.6: preferred, colored; next MAIN 1.7: preferred, colored
Changes since revision 1.6: +3 -4
lines
sync with head
Revision 1.6.8.1: download - view: text, markup, annotated - select for diffs
Fri Aug 11 15:42:13 2006 UTC (18 years, 8 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.6: preferred, colored; next MAIN 1.7: preferred, colored
Changes since revision 1.6: +3 -4
lines
sync with head
Revision 1.6.16.1: download - view: text, markup, annotated - select for diffs
Thu Jul 13 17:48:57 2006 UTC (18 years, 9 months ago) by gdamore
Branches: gdamore-uart
Diff to: previous 1.6: preferred, colored; next MAIN 1.7: preferred, colored
Changes since revision 1.6: +3 -4
lines
Merge from HEAD.
Revision 1.8: download - view: text, markup, annotated - select for diffs
Mon Jun 26 18:37:53 2006 UTC (18 years, 9 months ago) by drochner
Branches: MAIN
CVS tags: yamt-x86pmap-base,
yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
yamt-splraiseipl-base2,
yamt-splraiseipl-base,
yamt-splraiseipl,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
yamt-idlelwp-base8,
yamt-idlelwp,
wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
thorpej-atomic-base,
thorpej-atomic,
rpaulo-netinet-merge-pcb-base,
post-newlock2-merge,
nick-csl-alignment-base5,
nick-csl-alignment-base,
nick-csl-alignment,
newlock2-nbase,
newlock2-base,
newlock2,
netbsd-4-base,
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,
netbsd-4,
mjf-ufs-trans-base,
mjf-ufs-trans,
matt-nb4-arm-base,
matt-nb4-arm,
matt-mips64-base,
matt-mips64,
hpcarm-cleanup,
ad-audiomp-base,
ad-audiomp,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-x86pmap,
vmlocking,
reinoud-bufcleanup,
ppcoea-renovation,
matt-armv6,
jmcneill-pm
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -2
lines
Better explicitely specify the "ki2c" interface attribute,
so that the "config_found" can't hit "i2cbus".
Up to now, this relied on the fact that the i2cbus and ki2c
attach args both had a string as first element which was used
to distinguish. Now, interface attributes should take care
that attach arguments are not misinterpreted.
Revision 1.7: download - view: text, markup, annotated - select for diffs
Mon Jun 26 18:21:38 2006 UTC (18 years, 9 months ago) by drochner
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -3
lines
use the "i2cbus" interface attribute rather than putting a string name
into the i2cbus attach args
Revision 1.2.2.1: download - view: text, markup, annotated - select for diffs
Wed Jun 21 14:53:13 2006 UTC (18 years, 10 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +127 -63
lines
sync with head.
Revision 1.6: download - view: text, markup, annotated - select for diffs
Sat Dec 24 22:45:35 2005 UTC (19 years, 3 months ago) by perry
Branches: MAIN
CVS tags: yamt-uio_vmspace-base5,
yamt-uio_vmspace,
yamt-pdpolicy-base6,
yamt-pdpolicy-base5,
yamt-pdpolicy-base4,
yamt-pdpolicy-base3,
yamt-pdpolicy-base2,
yamt-pdpolicy-base,
simonb-timecounters-base,
simonb-timecounters,
simonb-timcounters-final,
peter-altq-base,
peter-altq,
gdamore-uart-base,
elad-kernelauth-base,
elad-kernelauth,
chap-midi-nbase,
chap-midi-base,
chap-midi
Branch point for: yamt-pdpolicy,
rpaulo-netinet-merge-pcb,
gdamore-uart
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -2
lines
bare asm -> __asm
Revision 1.5: download - view: text, markup, annotated - select for diffs
Sun Dec 11 12:18:03 2005 UTC (19 years, 4 months ago) by christos
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +1 -1
lines
merge ktrace-lwp.
Revision 1.1.4.5: download - view: text, markup, annotated - select for diffs
Thu Nov 10 13:57:27 2005 UTC (19 years, 5 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.1.4.4: preferred, colored; branchpoint 1.1: preferred, colored; next MAIN 1.2: preferred, colored
Changes since revision 1.1.4.4: +126 -62
lines
Sync with HEAD. Here we go again...
Revision 1.4: download - view: text, markup, annotated - select for diffs
Fri Oct 7 23:53:11 2005 UTC (19 years, 6 months ago) by macallan
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
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +19 -4
lines
Check for 'i2c-bus' child and if found look for i2c devices there instead of
directly under the ki2c node.
Needed for newer ( 2005? ) OpenFirmware.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Wed Aug 10 14:26:46 2005 UTC (19 years, 8 months ago) by macallan
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +111 -62
lines
allow to attach a normal iic bus, implements only iic_exec() and locking functions so far.
Revision 1.2: download - view: text, markup, annotated - select for diffs
Sun Jun 5 20:16:35 2005 UTC (19 years, 10 months ago) by nathanw
Branches: MAIN
Branch point for: yamt-lazymbuf
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +2 -2
lines
In ki2c_write() Apply __UNCONST() to the data parameter passed to
ki2c_start(). The same back-end routine does reads and writes, so
there's no real type-safety to be had here.
Revision 1.1.4.4: download - view: text, markup, annotated - select for diffs
Tue Sep 21 13:18:19 2004 UTC (20 years, 7 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.1.4.3: preferred, colored; branchpoint 1.1: preferred, colored
Changes since revision 1.1.4.3: +1 -1
lines
Fix the sync with head I botched.
Revision 1.1.4.3: download - view: text, markup, annotated - select for diffs
Sat Sep 18 14:36:56 2004 UTC (20 years, 7 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.1.4.2: preferred, colored; branchpoint 1.1: preferred, colored
Changes since revision 1.1.4.2: +1 -1
lines
Sync with HEAD.
Revision 1.1.4.2: download - view: text, markup, annotated - select for diffs
Tue Aug 3 10:37:21 2004 UTC (20 years, 8 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.1.4.1: preferred, colored; branchpoint 1.1: preferred, colored
Changes since revision 1.1.4.1: +367 -0
lines
Sync with HEAD
Revision 1.1.4.1
Sat Dec 27 02:19:34 2003 UTC (21 years, 3 months ago) by skrll
Branches: ktrace-lwp
FILE REMOVED
Changes since revision 1.1: +0 -367
lines
file ki2c.c was added on branch ktrace-lwp on 2004-08-03 10:37:21 +0000
Revision 1.1: download - view: text, markup, annotated - select for diffs
Sat Dec 27 02:19:34 2003 UTC (21 years, 3 months ago) by grant
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,
netbsd-3,
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,
kent-audio2-base,
kent-audio2,
kent-audio1-beforemerge,
kent-audio1-base,
kent-audio1
Branch point for: ktrace-lwp
add support for the Keywest I2C and snapper audio device, as found on
some iBook and PowerBook models.
this driver was written by Tsubai Masanari and further hacked on by
Jared D. McNeill to work on his iBook.
the driver is limited (master volume control only, and I haven't
tested recording) but has been functioning perfectly on my PowerBook
g4 DVI (ivory) for some time.
ok'd by matt.
CVSweb <webmaster@jp.NetBSD.org>