The NetBSD Project

CVS log for src/sys/dev/i2c/files.i2c

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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.126 / (download) - annotate - [select for diffs], Sat Dec 3 01:04:43 2022 UTC (15 months, 3 weeks ago) by brad
Branch: MAIN
CVS Tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation, netbsd-10-base, 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, HEAD
Changes since 1.125: +3 -4 lines
Diff to previous 1.125 (colored) to selected 1.93.2.1 (colored)



Split the BMP280 / BME280 driver into common code and create I2C and
SPI attachments.

Revision 1.125 / (download) - annotate - [select for diffs], Mon Nov 21 21:24:01 2022 UTC (16 months ago) by brad
Branch: MAIN
Changes since 1.124: +6 -1 lines
Diff to previous 1.124 (colored) to selected 1.93.2.1 (colored)



A driver for the Bosch BMP280 / BME280 temperature, humidity and
atmospheric pressure sensor.  This is an inexpensive to moderately
expensive chip available from a large number of places.  The driver
supports all aspects of the two chips, except for the repeating read
mode which would allow for sub-second queries, such as fall detection
or perhaps even as an altimeter.  This driver also only supports the
I2C interface and not the SPI interface.

The BME280, the one with humidity, is not fully tested at this point,
awaiting upon a breakout board and may not show proper humidity.

Revision 1.124 / (download) - annotate - [select for diffs], Thu Nov 17 19:20:06 2022 UTC (16 months, 1 week ago) by brad
Branch: MAIN
Changes since 1.123: +6 -1 lines
Diff to previous 1.123 (colored) to selected 1.93.2.1 (colored)



A driver for the Aosong AHT20 temperature and humidity sensor.  While
slow for an I2C sensor it is inexpensive and should work well enough
in most indoor conditions.  All features of the chip are supported.

Revision 1.123 / (download) - annotate - [select for diffs], Wed Jul 20 10:01:11 2022 UTC (20 months, 1 week ago) by riastradh
Branch: MAIN
CVS Tags: bouyer-sunxi-drm-base, bouyer-sunxi-drm
Changes since 1.122: +3 -1 lines
Diff to previous 1.122 (colored) to selected 1.93.2.1 (colored)

drm: Use CPPFLAGS.drmkms in all local drm drivers too.

This way we don't pollute the NetBSD kernel namespace with all the
Linux compat shim definitions needed to build drm, except for the
local drm drivers that need the API.

Revision 1.122 / (download) - annotate - [select for diffs], Mon Jan 17 16:31:23 2022 UTC (2 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.121: +5 -1 lines
Diff to previous 1.121 (colored) to selected 1.93.2.1 (colored)

Re-factor and overhaul the "mcp23s17gpio" driver as "mcpgpio", and
add support for 8-bit and I2C variants of the chip:
- MCP23008 / MCP23S08: 8-bit (I2C / SPI)
- MCP23017 / MCP23S17: 16-bit (I2C / SPI)
- MCP23018 / MCP23S18: 16-bit (I2C / SPI), open-drain outputs

The MCP23x17 and MCP23x18 are essentially identical, software-wise; we
merely report different GPIO pin capabilities (no push-pull output for
MCP23x18).  Also, remove the tri-state capability that was previously
advertised by the old version of this driver; these chips have no way
to put the pin into a HI-Z mode.

All 3 I2C versions are supported, but the SPI front-end still only
supports the MCP23S17 for now (SPI autoconfiguration needs an overhaul).

mcp23s17gpio(4) remains present as a link to the new mcpgpio(4) man page.

XXX Still to-do: FDT integration, interrupt suppoort.

Revision 1.121 / (download) - annotate - [select for diffs], Mon Dec 27 23:04:20 2021 UTC (2 years, 3 months ago) by andvar
Branch: MAIN
Changes since 1.120: +2 -2 lines
Diff to previous 1.120 (colored) to selected 1.93.2.1 (colored)

fix few typos in comments.

Revision 1.120 / (download) - annotate - [select for diffs], Tue Dec 7 17:39:54 2021 UTC (2 years, 3 months ago) by brad
Branch: MAIN
Changes since 1.119: +5 -1 lines
Diff to previous 1.119 (colored) to selected 1.93.2.1 (colored)



A driver and user land utility for the Sparkfun Serial Controlled Motor
Driver module as illustrated here:

https://www.sparkfun.com/products/13911

A SCMD module is a ARM SOC simular to a Arduino in front of a motor
driver chip.  The single SCMD module can control two motors and up to
16 additional modules can be chained together using an internal I2C
bus.  One can interface with the SCMD using tty uart commands, SPI or
I2C.  The driver in this commit adds a kernel driver for the I2C and
SPI interfaces.  The command line utility provides a set of
convenience commands that support most of the functions of the SCMD
and is able to use the tty uart mode, SPI user land or the included
kernel driver in a uniform manor.

The use of the SCMD module is mostly for small robots and the like,
but it can control anything that is controllable by voltage.

Revision 1.119 / (download) - annotate - [select for diffs], Sat Nov 6 13:34:40 2021 UTC (2 years, 4 months ago) by brad
Branch: MAIN
Changes since 1.118: +6 -1 lines
Diff to previous 1.118 (colored) to selected 1.93.2.1 (colored)



Driver for the Sensirion SHT30/SHT31/SHT35 temperature and humidity
sensor such as:

https://www.adafruit.com/product/2857

This is a higher priced sensor with a lot of features, including the
ability to do sub-second periodic updates.  The driver supports
everything about the sensor except for the alert pin.

Revision 1.118 / (download) - annotate - [select for diffs], Thu Oct 14 13:54:46 2021 UTC (2 years, 5 months ago) by brad
Branch: MAIN
Changes since 1.117: +7 -1 lines
Diff to previous 1.117 (colored) to selected 1.93.2.1 (colored)



A driver for the Sensirion SGP40 MOx gas sensor.  An example of this
chip from Adafruit is:

https://www.adafruit.com/product/4829

This is a moderately priced gas sensor that can detect volatile
organic compounds in the air.  The driver uses the 3-clause BSD
licensed VOC algorithm provided by Sensirion to turn the raw sensor
metric into a VOC index which can indicate the quality of the air in a
particular indoor environment.  All published functions of the chip
are supported and one unpublished feature.

Revision 1.117 / (download) - annotate - [select for diffs], Sun Oct 3 17:27:02 2021 UTC (2 years, 5 months ago) by brad
Branch: MAIN
Changes since 1.116: +6 -1 lines
Diff to previous 1.116 (colored) to selected 1.93.2.1 (colored)



A driver for the Sensirion SHT40/SHT41/SHT45 temperature and humidity
sensor.  An example of this chip is:

https://www.adafruit.com/product/4885

This is a lower cost chip that provides higher then usual precision
according to the data sheet.  This driver supports all of the published
functions that the chip has.

Revision 1.116.6.1 / (download) - annotate - [select for diffs], Mon Aug 9 00:30:09 2021 UTC (2 years, 7 months ago) by thorpej
Branch: thorpej-i2c-spi-conf2
Changes since 1.116: +2 -2 lines
Diff to previous 1.116 (colored) next main 1.117 (colored) to selected 1.93.2.1 (colored)

Port over the changes from thorpej-i2c-spi-conf to thorpej-i2c-spi-conf2,
which is based on a newer HEAD revision.

Revision 1.115.4.2 / (download) - annotate - [select for diffs], Sun Aug 1 22:42:23 2021 UTC (2 years, 7 months ago) by thorpej
Branch: thorpej-i2c-spi-conf
Changes since 1.115.4.1: +1 -6 lines
Diff to previous 1.115.4.1 (colored) to branchpoint 1.115 (colored) next main 1.116 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.116 / (download) - annotate - [select for diffs], Tue Jul 27 20:23:41 2021 UTC (2 years, 8 months ago) by macallan
Branch: MAIN
CVS Tags: thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf-base, thorpej-futex2-base, thorpej-futex2, thorpej-cfargs2-base, thorpej-cfargs2
Branch point for: thorpej-i2c-spi-conf2
Changes since 1.115: +1 -6 lines
Diff to previous 1.115 (colored) to selected 1.93.2.1 (colored)

move the fcu driver into arch/macppc where it belongs

Revision 1.115.4.1 / (download) - annotate - [select for diffs], Sat May 8 14:23:15 2021 UTC (2 years, 10 months ago) by thorpej
Branch: thorpej-i2c-spi-conf
Changes since 1.115: +2 -2 lines
Diff to previous 1.115 (colored) to selected 1.93.2.1 (colored)

- Add an optional bus number to i2cbus_attach_args, and a corresponding
  optional "bus" locator to the i2cbus interface attribute.
- Add a iicbus_print_multi() routine, which is like iicbus_print(),
  but also prints the bus number.
- Use these new features in the iicmux driver rather than winging it.

Revision 1.112.2.2 / (download) - annotate - [select for diffs], Sat Apr 3 22:28:44 2021 UTC (2 years, 11 months ago) by thorpej
Branch: thorpej-futex
Changes since 1.112.2.1: +2 -2 lines
Diff to previous 1.112.2.1 (colored) next main 1.113 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.115 / (download) - annotate - [select for diffs], Mon Jan 4 22:09:35 2021 UTC (3 years, 2 months ago) by thorpej
Branch: MAIN
CVS Tags: thorpej-futex-base, thorpej-cfargs-base, thorpej-cfargs, 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
Changes since 1.114: +2 -2 lines
Diff to previous 1.114 (colored) to selected 1.93.2.1 (colored)

Rename tsl256x.c -> tsllux.c.  No other changes are made by this commit.

Revision 1.112.2.1 / (download) - annotate - [select for diffs], Sun Jan 3 16:34:58 2021 UTC (3 years, 2 months ago) by thorpej
Branch: thorpej-futex
Changes since 1.112: +10 -1 lines
Diff to previous 1.112 (colored) to selected 1.93.2.1 (colored)

Sync w/ HEAD.

Revision 1.114 / (download) - annotate - [select for diffs], Tue Dec 29 01:47:51 2020 UTC (3 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.113: +6 -1 lines
Diff to previous 1.113 (colored) to selected 1.93.2.1 (colored)

Add a driver for NXP PCA954x / PCA984x I2C switch / mux controllers.

Revision 1.113 / (download) - annotate - [select for diffs], Mon Dec 28 20:29:57 2020 UTC (3 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.112: +5 -1 lines
Diff to previous 1.112 (colored) to selected 1.93.2.1 (colored)

Re-factor the "iicmux" driver to support other types of muxes that are
themselves i2c devices.

Revision 1.112 / (download) - annotate - [select for diffs], Thu Oct 29 06:55:51 2020 UTC (3 years, 4 months ago) by jdc
Branch: MAIN
Branch point for: thorpej-futex
Changes since 1.111: +6 -1 lines
Diff to previous 1.111 (colored) to selected 1.93.2.1 (colored)

Add a driver for the PCF8574 I/O expander, used as a GPIO in some sparc64
hardware.
The driver currently handles pins configured as LED or INDICATOR and adds
them to the LED and sysmon_envsys subsystems, respectively.

Revision 1.110.4.1 / (download) - annotate - [select for diffs], Sat Apr 25 11:23:59 2020 UTC (3 years, 11 months ago) by bouyer
Branch: bouyer-xenpvh
Changes since 1.110: +6 -1 lines
Diff to previous 1.110 (colored) next main 1.111 (colored) to selected 1.93.2.1 (colored)

Sync with bouyer-xenpvh-base2 (HEAD)

Revision 1.111 / (download) - annotate - [select for diffs], Fri Apr 24 12:38:31 2020 UTC (3 years, 11 months ago) by macallan
Branch: MAIN
CVS Tags: bouyer-xenpvh-base2
Changes since 1.110: +6 -1 lines
Diff to previous 1.110 (colored) to selected 1.93.2.1 (colored)

a very preliminary driver for the acclerometer found in later *Books
register definitions from OpenBSD

Revision 1.93.2.2 / (download) - annotate - [select for diffs], Mon Apr 13 08:04:20 2020 UTC (3 years, 11 months ago) by martin
Branch: phil-wifi
Changes since 1.93.2.1: +34 -10 lines
Diff to previous 1.93.2.1 (colored) to branchpoint 1.93 (colored) next main 1.94 (colored)

Mostly merge changes from HEAD upto 20200411

Revision 1.107.2.2 / (download) - annotate - [select for diffs], Sat Feb 29 20:19:08 2020 UTC (4 years ago) by ad
Branch: ad-namecache
Changes since 1.107.2.1: +6 -1 lines
Diff to previous 1.107.2.1 (colored) to branchpoint 1.107 (colored) next main 1.108 (colored) to selected 1.93.2.1 (colored)

Sync with head.

Revision 1.110 / (download) - annotate - [select for diffs], Sun Feb 2 06:41:27 2020 UTC (4 years, 1 month ago) by macallan
Branch: MAIN
CVS Tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, is-mlppp-base, is-mlppp, bouyer-xenpvh-base1, bouyer-xenpvh-base, ad-namecache-base3
Branch point for: bouyer-xenpvh
Changes since 1.109: +2 -2 lines
Diff to previous 1.109 (colored) to selected 1.93.2.1 (colored)

attach LEDs according to info passed as device properties

Revision 1.109 / (download) - annotate - [select for diffs], Wed Jan 29 05:27:05 2020 UTC (4 years, 1 month ago) by macallan
Branch: MAIN
Changes since 1.108: +6 -1 lines
Diff to previous 1.108 (colored) to selected 1.93.2.1 (colored)

the beginning of a driver for Philips Semiconductors PCA 9555 and 9556
GPIO controllers, found in Sun Fire v210 and some G5 macs.
Only prints configuration and line status so far.

Revision 1.100.2.2 / (download) - annotate - [select for diffs], Tue Jan 21 10:39:58 2020 UTC (4 years, 2 months ago) by martin
Branch: netbsd-9
CVS Tags: netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2
Changes since 1.100.2.1: +11 -1 lines
Diff to previous 1.100.2.1 (colored) to branchpoint 1.100 (colored) next main 1.101 (colored) to selected 1.93.2.1 (colored)

Pull up following revision(s) (requested by mrg in ticket #616):

	sys/dev/ic/anx_dp.c: revision 1.2
	sys/arch/evbarm/conf/GENERIC64: revision 1.126
	sys/dev/ic/anx_dp.h: revision 1.1
	sys/arch/evbarm/conf/GENERIC64: revision 1.128
	sys/dev/ic/anx_dp.h: revision 1.2
	sys/dev/fdt/dwcmmc_fdt.c: revision 1.9
	sys/dev/i2c/cwfg.c: revision 1.1
	sys/conf/files: revision 1.1247
	sys/dev/fdt/pwm_backlight.c: revision 1.5
	sys/dev/fdt/pwm_backlight.c: revision 1.6
	sys/arch/arm/rockchip/rk3399_cru.c: revision 1.14
	sys/arch/arm/rockchip/rk3399_cru.c: revision 1.15
	sys/arch/arm/rockchip/rk3399_cru.c: revision 1.16
	sys/arch/arm/rockchip/rk3399_cru.c: revision 1.17
	sys/dev/ic/dwc_mmc.c: revision 1.20
	sys/arch/arm/rockchip/rk3399_cru.c: revision 1.18
	sys/arch/arm/rockchip/rk3399_cru.c: revision 1.19
	sys/dev/usb/usbdevs: revision 1.775
	sys/arch/arm/rockchip/rk_dwhdmi.c: revision 1.4
	sys/dev/fdt/simple_amplifier.c: revision 1.1
	sys/dev/i2c/files.i2c: revision 1.105
	sys/arch/evbarm/conf/GENERIC64: revision 1.117
	sys/arch/evbarm/conf/GENERIC64: revision 1.118
	sys/dev/i2c/files.i2c: revision 1.107
	sys/dev/fdt/files.fdt: revision 1.49
	sys/arch/arm/rockchip/rk_anxdp.c: revision 1.1
	sys/dev/ic/dwc_mmc_var.h: revision 1.9
	sys/dev/i2c/rkpmic.c: revision 1.4
	sys/arch/arm/rockchip/rk_anxdp.c: revision 1.2
	sys/dev/i2c/rkpmic.c: revision 1.5
	sys/dev/i2c/rkpmic.c: revision 1.6
	sys/arch/arm/rockchip/rk_vop.c: revision 1.4
	sys/arch/arm/rockchip/rk_vop.c: revision 1.5
	sys/dev/i2c/rkpmic.c: revision 1.8
	sys/arch/arm/dts/rk3399-pinebook-pro.dts: revision 1.1
	sys/dev/usb/ums.c: revision 1.96 (via patch)
	sys/arch/arm/rockchip/rk_pwm.c: revision 1.3
	sys/arch/arm/dts/rk3399-pinebook-pro.dts: revision 1.2
	sys/dev/i2c/es8316ac.c: revision 1.1
	sys/dev/fdt/dwcmmc_fdt.c: revision 1.10
	sys/dev/i2c/es8316ac.c: revision 1.2
	sys/dev/fdt/fdt_panel.c: revision 1.1
	sys/dev/ic/dwc_mmc.c: revision 1.18
	sys/dev/fdt/fdt_panel.c: revision 1.2
	sys/dev/ic/dwc_mmc.c: revision 1.19
	sys/arch/arm/dts/rk3399-rockpro64.dts: revision 1.10
	sys/dev/fdt/fdt_port.c: revision 1.5
	sys/dev/ic/dwc_mmc_var.h: revision 1.10
	sys/dev/fdt/fdt_port.c: revision 1.6
	sys/arch/evbarm/conf/GENERIC64: revision 1.122
	sys/dev/ic/dwc_mmc_var.h: revision 1.11
	sys/dev/fdt/files.fdt: revision 1.50
	sys/arch/evbarm/conf/GENERIC64: revision 1.123
	sys/arch/arm/rockchip/rk_i2s.c: revision 1.2
	sys/arch/arm/rockchip/files.rockchip: revision 1.23
	sys/arch/evbarm/conf/GENERIC64: revision 1.124
	sys/dev/ic/anx_dp.c: revision 1.1

rkpmic: add RTC support; register w/ todr(9)
rkpmic: correct delay
Add support for SDIO interrupts.
fix copy/paste error in mux_pll_src_cpll_gpll_ppll_parents[]
add RK3399 eDP clocks
add RK3399 DisplayPort clocks
style fix/KNF
rk3399_cru: implement dclk_vop0_frac and dclk_vop1_frac
Move drm_encoder from rkvop(4) to the SoC-layer output pipe drivers (rk_dwhdmi).
rkvop: set stride using virtual framebuffer width instead of display mode
rk3399_cru: Reparent dclk_vop[01] to gpll via dclk_vop[01]_frac.
The previous source of dclk_vop[01] was vpll via dclk_vop[01]_div.
vpll is apparently used directly as a pixel clock source for the
HDMI PHY, and we don't want the other VOP's dclk changing out from
under it because we can't handle finding a replacement clock source
with the right rate yet.
gpll happens to run at 594MHz, which works well as a basis for pixel
clocks.
Linux suggests that the source clock of the fractional divider needs
to be more than twenty times greater than the resulting clock (or some
intermediate clock?) for output stability.  This may not be the case
with 594MHz and the common pixel clocks I see used by displays in my
area of the wild, but it works for now.
add Analogix DisplayPort core driver
add Rockchip (RK3399) glue for Analogix DisplayPort core
add anxdp(4)
Add another panel@fdt driver, this time for DRM-style panels.
To do: migrate away from other panel driver.
enable panel at fdt drivers
paper over the rkpwm get_conf function that otherwise doesn't seem to
let things work
add template bits for optional eDP panel on RockPro64
Abort panel driver attach if required regulator is missing.
Add clk provider
Add Pinebook Pro dts, from Manjaro Linux.
https://gitlab.manjaro.org/tsys/linux-pinebook-pro/blob/877ca0e7283596f37845de50dc36bff5b88b91e1/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
+ rk3399-pinebook-pro.dts
Attach mmcpwrseq resource earlier
dwcmmc improvements:
 - Use mmcpwrseq resources if available
 - Only set 4- or 8-bit mode if specified in the dt properties
 - Add quirk for implementations with inverted power enable logic
 - Support switching signal voltage between 1.8V and 3.3V
 - Fix a clock divider issue on Rockchip SoCs
Fix performance regression with previous
Quiet chatty printfs
No need to print all supported levels at attach, print the range and total number of steps
Disable SPI for now (rkspi driver hangs at boot)
Add driver for simple-audio-amplifier binding
Add driver for Everest Semi ES8316 Low Power Audio CODEC
add es8316, simpleamp
Avoid sleeping while the audio intr lock is held.
If the rockchip,system-power-controller property is present, try to power off with the PMIC
Add HAILUCK keyboard (product 1e)
Add a quirk for the HAILUCK USB keyboard / touchpad device with product 1e.
The keyboard does not function properly unless the touchpad's intr endpoint
is active.
Add driver for CellWise CW2015 Fuel Gauge IC.
add cwfg
Emit PMFE_DISPLAY_{ON,OFF} events in response to DPMS requests.
If the backlight node does not have an enable gpio, set the lowest duty
cycle to turn the display off instead.
Attach psci as early as possible. This allows other power controllers to
register their own poweroff / reset callbacks with a higher preference.
Add 2000 MHz to available armclkb rates
Remove debug printfs

Revision 1.107.2.1 / (download) - annotate - [select for diffs], Fri Jan 17 21:47:31 2020 UTC (4 years, 2 months ago) by ad
Branch: ad-namecache
Changes since 1.107: +1 -2 lines
Diff to previous 1.107 (colored) to selected 1.93.2.1 (colored)

Sync with head.

Revision 1.108 / (download) - annotate - [select for diffs], Sun Jan 12 17:48:42 2020 UTC (4 years, 2 months ago) by thorpej
Branch: MAIN
CVS Tags: ad-namecache-base2, ad-namecache-base1
Changes since 1.107: +1 -2 lines
Diff to previous 1.107 (colored) to selected 1.93.2.1 (colored)

Clean up gttwsi's register access stuff:
- Garbage-collect the obsolete GTTWSI_ALLWINNER option; it hasn't been
  needed since FDT'ization of the Allwinner support code.
- Redefine thw "TWSI_*" register definitions to clearly call out:
  -> The Marvell flavor of the offsets
  -> The Allwinner flavor of the offsets
  ...and make the regular definitions indices into a register map.
- Pass the appropriate register map from the front-end to the core.
- Remove the customer register read/write callbacks -- they are no longer
  needed now that each front-end passes an appropriate register map to
  the core.

Revision 1.107 / (download) - annotate - [select for diffs], Fri Jan 3 18:00:05 2020 UTC (4 years, 2 months ago) by jmcneill
Branch: MAIN
CVS Tags: ad-namecache-base
Branch point for: ad-namecache
Changes since 1.106: +6 -1 lines
Diff to previous 1.106 (colored) to selected 1.93.2.1 (colored)

Add driver for CellWise CW2015 Fuel Gauge IC.

Revision 1.106 / (download) - annotate - [select for diffs], Fri Jan 3 03:44:42 2020 UTC (4 years, 2 months ago) by thorpej
Branch: MAIN
Changes since 1.105: +1 -3 lines
Diff to previous 1.105 (colored) to selected 1.93.2.1 (colored)

Eliminate all of the #ifdefs for the "strtc" driver.  Define model
properties (similar to what the "dsrtc" driver does), and provide
DT compat strings corresponding to those models.  Allow config flags
to specify the model for non-FDT platforms (also like "dsrtc").

Revision 1.105 / (download) - annotate - [select for diffs], Thu Jan 2 22:06:59 2020 UTC (4 years, 2 months ago) by jmcneill
Branch: MAIN
Changes since 1.104: +6 -1 lines
Diff to previous 1.104 (colored) to selected 1.93.2.1 (colored)

Add driver for Everest Semi ES8316 Low Power Audio CODEC

Revision 1.100.2.1 / (download) - annotate - [select for diffs], Wed Nov 27 13:46:45 2019 UTC (4 years, 4 months ago) by martin
Branch: netbsd-9
CVS Tags: netbsd-9-0-RC1
Changes since 1.100: +14 -7 lines
Diff to previous 1.100 (colored) to selected 1.93.2.1 (colored)

Pull up following revision(s) (requested by jmcneill in ticket #491):

	sys/arch/evbarm/conf/BEAGLEBOARD_INSTALL: file removal
	sys/arch/arm/ti/ti_dpll_clock.c: revision 1.2
	sys/arch/arm/ti/ti_sysc.c: revision 1.1
	sys/arch/arm/ti/ti_rng.c: revision 1.1
	sys/arch/arm/ti/ti_rng.c: revision 1.2
	sys/dev/i2c/tps65950.c: file removal
	sys/arch/evbarm/conf/std.ti: file removal
	sys/dev/i2c/files.i2c: revision 1.101
	sys/dev/i2c/files.i2c: revision 1.102
	sys/dev/i2c/at24cxx.c: revision 1.32
	sys/dev/i2c/files.i2c: revision 1.103
	sys/dev/i2c/twl4030.c: revision 1.1
	sys/dev/i2c/files.i2c: revision 1.104
	sys/dev/i2c/twl4030.c: revision 1.2
	sys/dev/i2c/twl4030.c: revision 1.3
	sys/arch/arm/ti/ti_com.c: revision 1.6
	sys/arch/arm/ti/ti_com.c: revision 1.7
	sys/arch/arm/ti/ti_com.c: revision 1.8
	sys/dev/fdt/cpufreq_dt.c: revision 1.11
	sys/arch/arm/ti/ti_iic.c: revision 1.1
	sys/dev/fdt/cpufreq_dt.c: revision 1.12
	sys/arch/arm/ti/ti_usb.c: revision 1.1
	sys/arch/arm/ti/ti_iic.c: revision 1.2
	sys/dev/fdt/cpufreq_dt.c: revision 1.13
	sys/arch/arm/ti/ti_iic.c: revision 1.3
	sys/arch/arm/ti/ti_iic.c: revision 1.4
	sys/arch/evbarm/conf/files.ti: file removal
	sys/arch/evbarm/conf/BEAGLEBOARDXM: file removal
	sys/arch/arm/dts/omap3-n900.dts: revision 1.1
	sys/arch/arm/ti/ti_edma.h: revision 1.1
	sys/arch/evbarm/conf/OVERO_INSTALL: file removal
	sys/arch/arm/ti/ti_usbtll.c: revision 1.1
	sys/arch/arm/ti/files.ti: revision 1.5
	etc/etc.evbarm/Makefile.inc: revision 1.108
	sys/arch/arm/ti/files.ti: revision 1.6
	sys/dev/i2c/tps65217pmic.c: revision 1.13
	etc/etc.evbarm/Makefile.inc: revision 1.109
	sys/arch/arm/ti/files.ti: revision 1.7
	sys/dev/i2c/tps65217pmic.c: revision 1.14
	sys/arch/arm/ti/files.ti: revision 1.8
	sys/arch/arm/ti/files.ti: revision 1.9
	sys/dev/fdt/usbnopphy.c: revision 1.1
	sys/arch/evbarm/conf/GENERIC: revision 1.55
	sys/arch/evbarm/conf/GENERIC: revision 1.56
	sys/arch/evbarm/conf/GENERIC: revision 1.57
	sys/arch/evbarm/conf/GENERIC: revision 1.58
	sys/arch/evbarm/conf/GENERIC: revision 1.59
	sys/arch/evbarm/conf/BEAGLEBONE: file removal
	sys/arch/arm/ti/omap2_gpmcreg.h: revision 1.1
	sys/arch/arm/ti/ti_otgreg.h: revision 1.1
	sys/arch/arm/ti/ti_tptc.c: revision 1.1
	sys/arch/evbarm/conf/IGEPV2: file removal
	sys/arch/arm/ti/am3_prcm.c: revision 1.10
	sys/dev/i2c/tda19988.c: revision 1.1
	sys/arch/evbarm/conf/OVERO: file removal
	sys/dev/i2c/tda19988.c: revision 1.2
	sys/dev/i2c/tda19988.c: revision 1.3
	sys/arch/arm/ti/omap3_dss.c: revision 1.1
	sys/arch/evbarm/conf/BEAGLEBONE_INSTALL: file removal
	sys/arch/arm/ti/ti_omapintc.c: revision 1.2
	etc/etc.evbarm/Makefile.inc: revision 1.112
	etc/etc.evbarm/Makefile.inc: revision 1.113
	sys/arch/arm/ti/ti_div_clock.c: revision 1.1
	etc/etc.evbarm/Makefile.inc: revision 1.114
	sys/arch/evbarm/conf/N900: revision 1.32
	sys/arch/evbarm/conf/N900: revision 1.33
	distrib/utils/embedded/conf/armv7.conf: revision 1.36
	sys/arch/evbarm/conf/GENERIC: revision 1.60
	distrib/utils/embedded/conf/armv7.conf: revision 1.37
	sys/arch/arm/ti/omap2_nand.c: revision 1.1
	sys/arch/evbarm/conf/GENERIC: revision 1.61
	sys/arch/arm/ti/omap2_nand.c: revision 1.2
	sys/arch/evbarm/conf/GENERIC: revision 1.62
	distrib/utils/embedded/conf/armv7.conf: revision 1.39
	sys/arch/evbarm/conf/GENERIC: revision 1.63
	sys/arch/arm/ti/ti_fb.c: revision 1.1
	sys/arch/evbarm/conf/GENERIC: revision 1.64
	sys/arch/evbarm/conf/GENERIC: revision 1.65
	sys/arch/evbarm/conf/GENERIC: revision 1.66
	sys/arch/evbarm/conf/GENERIC: revision 1.67
	sys/arch/arm/ti/ti_platform.c: revision 1.7
	sys/arch/arm/ti/ti_platform.c: revision 1.8
	sys/arch/arm/ti/am3_prcm.c: revision 1.2
	sys/arch/arm/ti/ti_platform.c: revision 1.9
	sys/arch/arm/ti/am3_prcm.c: revision 1.3
	sys/arch/arm/ti/am3_prcm.c: revision 1.4
	sys/arch/arm/ti/am3_prcm.c: revision 1.5
	sys/arch/arm/ti/am3_prcm.c: revision 1.6
	sys/arch/arm/ti/am3_prcm.c: revision 1.7
	sys/arch/evbarm/conf/DEVKIT8000: file removal
	sys/arch/arm/ti/am3_prcm.c: revision 1.8
	sys/arch/arm/ti/am3_prcm.c: revision 1.9
	sys/dev/fdt/syscon.c: revision 1.4
	sys/arch/arm/ti/files.ti: revision 1.10
	sys/arch/arm/ti/ti_mux_clock.c: revision 1.1
	sys/arch/arm/ti/ti_sdhc.c: revision 1.1
	sys/arch/arm/ti/files.ti: revision 1.11
	sys/arch/arm/ti/if_cpswreg.h: revision 1.1
	sys/arch/arm/ti/ti_sdhc.c: revision 1.2
	sys/arch/arm/ti/files.ti: revision 1.12
	sys/arch/arm/ti/ti_sdhc.c: revision 1.3
	sys/arch/arm/ti/files.ti: revision 1.13
	sys/arch/arm/ti/files.ti: revision 1.14
	sys/arch/arm/ti/files.ti: revision 1.15
	sys/arch/arm/ti/files.ti: revision 1.16
	sys/arch/arm/ti/omap3_cm.c: revision 1.1
	sys/arch/arm/ti/files.ti: revision 1.17
	sys/arch/arm/ti/omap3_cm.c: revision 1.2
	sys/arch/arm/ti/files.ti: revision 1.18
	sys/arch/arm/ti/omap3_cm.c: revision 1.3
	sys/arch/arm/ti/files.ti: revision 1.19
	sys/arch/arm/ti/omap3_cm.c: revision 1.4
	sys/arch/arm/ti/ti_motg.c: revision 1.1
	sys/arch/arm/ti/ti_rngreg.h: revision 1.1
	sys/arch/arm/ti/ti_sdhcreg.h: revision 1.1
	sys/arch/arm/dts/omap3-beagle-xm.dts: revision 1.1
	sys/arch/arm/ti/am3_platform.c: revision 1.1
	sys/arch/arm/ti/ti_sdhcreg.h: revision 1.2
	sys/arch/arm/ti/ti_lcdc.h: revision 1.1
	sys/arch/evbarm/conf/BEAGLEBOARDXM_INSTALL: file removal
	sys/arch/evbarm/conf/README.evbarm: revision 1.22
	sys/arch/evbarm/conf/README.evbarm: revision 1.23
	sys/arch/arm/ti/ti_platform.c: file removal
	sys/arch/evbarm/conf/README.evbarm: revision 1.24
	sys/arch/arm/ti/ti_omaptimer.c: revision 1.2
	sys/arch/arm/ti/ti_prcm.c: revision 1.2
	sys/arch/evbarm/conf/README.evbarm: revision 1.25
	sys/arch/arm/ti/ti_omaptimer.c: revision 1.3
	sys/arch/arm/ti/ti_prcm.c: revision 1.3
	sys/arch/evbarm/conf/README.evbarm: revision 1.26
	sys/arch/arm/ti/ti_omaptimer.c: revision 1.4
	sys/arch/evbarm/conf/README.evbarm: revision 1.27
	sys/arch/arm/ti/ti_ehci.c: revision 1.1
	sys/arch/arm/ti/files.ti: revision 1.20
	sys/arch/arm/ti/ti_cpufreq.c: revision 1.1
	sys/arch/arm/ti/ti_cpufreq.c: revision 1.2
	sys/arch/arm/fdt/smsh_fdt.c: revision 1.2
	sys/arch/arm/ti/omap3_dssreg.h: revision 1.1
	sys/arch/evbarm/conf/OVERO: revision 1.56
	sys/arch/evbarm/conf/TI: file removal
	sys/arch/arm/dts/omap3-beagle.dts: revision 1.1
	sys/dev/fdt/fdtvar.h: revision 1.55
	sys/dev/fdt/fdtvar.h: revision 1.56
	distrib/utils/embedded/files/armv7_boot_nonefi.cmd: revision 1.2
	sys/dev/fdt/fdt_phy.c: revision 1.6
	sys/arch/arm/ti/ti_iicreg.h: revision 1.1
	sys/arch/arm/ti/ti_lcdc.c: revision 1.1
	sys/arch/arm/ti/ti_gpio.c: revision 1.1
	sys/arch/arm/ti/ti_iicreg.h: revision 1.2
	sys/arch/arm/ti/ti_lcdc.c: revision 1.2
	sys/dev/fdt/files.fdt: revision 1.46
	sys/arch/arm/ti/ti_gpio.c: revision 1.2
	sys/arch/arm/ti/ti_iicreg.h: revision 1.3
	sys/arch/arm/ti/ti_lcdc.c: revision 1.3
	sys/dev/fdt/files.fdt: revision 1.47
	sys/arch/arm/ti/ti_gpio.c: revision 1.3
	sys/dev/fdt/pinctrl_single.c: revision 1.1
	sys/arch/evbarm/conf/files.generic: revision 1.9
	sys/arch/arm/ti/ti_gpmc.c: revision 1.1
	sys/arch/arm/ti/ti_lcdcreg.h: revision 1.1
	sys/arch/evbarm/conf/BEAGLEBOARD: file removal
	sys/arch/arm/ti/omap3_prm.c: revision 1.1
	sys/arch/arm/ti/ti_platform.h: file removal
	sys/arch/arm/ti/omap3_platform.c: revision 1.1
	sys/arch/arm/ti/ti_prcm.h: revision 1.2
	sys/arch/arm/ti/omap3_platform.c: revision 1.2
	sys/arch/arm/ti/ti_prcm.h: revision 1.3
	sys/arch/arm/ti/ti_prcm.h: revision 1.4
	sys/dev/fdt/fdt_clock.c: revision 1.9
	sys/arch/arm/ti/ti_edma.c: revision 1.1
	sys/arch/arm/ti/ti_otg.c: revision 1.1
	distrib/utils/embedded/files/armv7_boot.cmd: revision 1.15
	sys/arch/arm/ti/if_cpsw.c: revision 1.7
	sys/arch/evbarm/conf/std.igepv2: file removal
	sys/arch/arm/ti/if_cpsw.c: revision 1.8
	sys/arch/arm/ti/ti_dpll_clock.c: revision 1.1

Adapt ti fdt glue to support GENERIC kernel.

Do not search 64-bit directories for dts files

Fix am33xx_platform_early_putchar for pre-MMU output

Add bus driver for TI sysc interconncet.

Make com work again

Add EDMA TPCC and TPTC drivers.

Add driver for one-register-per-pin type pinctrl devices.

Add MMCHS support.

Add USB support.

Disable autoidle

Place devmap above KERNEL_IO_VBASE

Use Timer2 for timecounter, and enable hw module.

Add support for TI AM335x

Add atmel,24c256 compat data

Add I2C support.

Add tiiic, tps65217pmic

Add FDT support

Fix early putchar, add reset func

No support for tegra210 in armv7 kernel

Switch to GENERIC kernels only.

Get mac address from DT

Skip nodes with an "opp-suspend" property and fix tables that have disabled
nodes in the middle.

enumerate devices under child "clocks" node

Add support for platform specific opp table filters.

Add fdtbus_clock_count to count the number of clock references on a given node

enumerate devices under child "clocks" node

Add AM335x DVFS support.

Enable TI AM335x DVFS support

Add support for GPIO controller.

Add tigpio

Unhook BEAGLEBONE kernel from the build
Remove BEAGLEBONE kernel config (AM335x SoC is supported by GENERIC now).

Add support for hardware RNG.

Add tirng

Add explicit FDT_OPP for operating-points-v2 so the link set won't be empty

Rename SOC_TI_AM335X to SOC_AM33XX and rename ti_platform.c to
am3_platform.c

Set stdout-path on TI OMAP3 BeagleBoard

Add support for TI OMAP3.

Add OMAP3 support.

Move a lot of *.dtb files to a dtb/ subdirectory on the FAT partition.
Mkimage (eroneously) creates a FAT16 partition (despite the configuration
asking for FAT32), and that has a root directory size limit.
Idea from Jared.

Skip xref if it is 0

Add generic USB PHY driver

Add driver for TI TWL4030 Power Management IC

Use the hwmod clk to get the timer rate and explicitly enable the
timecounter timer.

Add OMAP3 USB support.

Add twl, usbnopphy, tiusb, tiusbtll

Move omap3 dtb files to /boot/dtb

Remove BEAGLEBOARD kernel from list of kernels to build
Remove BEAGLEBOARD kernel (supported by GENERIC now)

Fix PRM_RSTCTRL_RST_DPLL3 definition, now reset works.

Remove DEVKIT8000 kernel (GENERIC should work now)
Remove DPLL5 init ported from old omap code, it is not required

Set the stdout-path on xM like Ti OMAP3 BeagleBoard

Remove BEAGLEBOARDXM from the build
Remove BEAGLEBOARDXM kernel (supported by GENERIC now)

Handle different register layout on OMAP3

Add omapfb to FDT-ized TI port.

Use dss as console on Nokia N900.

Enable IRQ status bits for omap3 type and set speed properly

Add RTC support

Remove tps65950pm (hardware now supported by twl4030.c)

Add NAND flash support.

Add tigpmc, omapnand

Attach tiusb before the default pass since it adds a bus to reduce kernel output
Replace tps65950pm with twl (the former has been removed)

Fix non-FDT build

Cleanup and remove dependency on arch/arm/omap

Add support for GPIO interrupts and fix reading the state of output pins.
Match smsc,lan9115 and honour local-mac-address/mac-address properties

Only one instance of twl(4) is needed
Remove OVERO from build, and commented out N900 kernel config
OMAP3 SoC and all peripherals in the OVERO kernel are now supported by
GENERIC.

Remove commented out IGEPV2 entry

OMAP3 SoC and all peripherals in the IGEPV2 kernel are now supported by
GENERIC.

No longer used.

Also match ti,omap2-onenand

Defer power monitor polling to the sysmon taskq thread to avoid i2c transactions in intr context

Add driver for NXP TDA19988 HDMI encoder

Add support for AM335x display controller (LCDC).

Add tdahdmi, tilcdc, tifb

Test DRM_MODE_* flags, not VID_*

Comment out mode fixup (not needed it seems)

Use 297MHz for display clock

Select closest rate to desired pixel clock

Speed up mode setting a bit and turn off the display while changing modes

Revision 1.104 / (download) - annotate - [select for diffs], Sun Nov 3 22:57:52 2019 UTC (4 years, 4 months ago) by jmcneill
Branch: MAIN
CVS Tags: phil-wifi-20191119
Changes since 1.103: +6 -1 lines
Diff to previous 1.103 (colored) to selected 1.93.2.1 (colored)

Add driver for NXP TDA19988 HDMI encoder

Revision 1.103 / (download) - annotate - [select for diffs], Fri Nov 1 09:59:22 2019 UTC (4 years, 4 months ago) by jmcneill
Branch: MAIN
Changes since 1.102: +1 -6 lines
Diff to previous 1.102 (colored) to selected 1.93.2.1 (colored)

Remove tps65950pm (hardware now supported by twl4030.c)

Revision 1.102 / (download) - annotate - [select for diffs], Wed Oct 30 21:38:28 2019 UTC (4 years, 4 months ago) by jmcneill
Branch: MAIN
Changes since 1.101: +6 -1 lines
Diff to previous 1.101 (colored) to selected 1.93.2.1 (colored)

Add driver for TI TWL4030 Power Management IC

Revision 1.101 / (download) - annotate - [select for diffs], Sun Oct 27 20:11:13 2019 UTC (4 years, 5 months ago) by jmcneill
Branch: MAIN
Changes since 1.100: +4 -2 lines
Diff to previous 1.100 (colored) to selected 1.93.2.1 (colored)

Add FDT support

Revision 1.100 / (download) - annotate - [select for diffs], Wed Jul 24 05:25:32 2019 UTC (4 years, 8 months ago) by thorpej
Branch: MAIN
CVS Tags: netbsd-9-base
Branch point for: netbsd-9
Changes since 1.99: +6 -1 lines
Diff to previous 1.99 (colored) to selected 1.93.2.1 (colored)

Add a driver for the NXP PCA9685 16-channel, 12-bit PWM Fm+ LED controller.

Revision 1.93.2.1 / (download) - annotate - [selected], Mon Jun 10 22:07:09 2019 UTC (4 years, 9 months ago) by christos
Branch: phil-wifi
Changes since 1.93: +28 -1 lines
Diff to previous 1.93 (colored)

Sync with HEAD

Revision 1.99 / (download) - annotate - [select for diffs], Sun Mar 17 01:03:47 2019 UTC (5 years ago) by tnn
Branch: MAIN
CVS Tags: phil-wifi-20190609, isaki-audio2-base, isaki-audio2
Changes since 1.98: +5 -1 lines
Diff to previous 1.98 (colored) to selected 1.93.2.1 (colored)

add i2c attachment for ssdfb

Revision 1.98 / (download) - annotate - [select for diffs], Sun Feb 3 13:17:12 2019 UTC (5 years, 1 month ago) by jmcneill
Branch: MAIN
Changes since 1.97: +6 -1 lines
Diff to previous 1.97 (colored) to selected 1.93.2.1 (colored)

Add basic support for Analogix eDP transmitters. This driver doesn't
know how to mode set yet -- it only knows how to read EDID from a panel.

Revision 1.84.2.7 / (download) - annotate - [select for diffs], Wed Dec 26 14:01:48 2018 UTC (5 years, 3 months ago) by pgoyette
Branch: pgoyette-compat
CVS Tags: pgoyette-compat-merge-20190127
Changes since 1.84.2.6: +2 -1 lines
Diff to previous 1.84.2.6 (colored) to branchpoint 1.84 (colored) next main 1.85 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD, resolve a few conflicts

Revision 1.97 / (download) - annotate - [select for diffs], Fri Dec 14 22:05:36 2018 UTC (5 years, 3 months ago) by macallan
Branch: MAIN
CVS Tags: pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226
Changes since 1.96: +2 -1 lines
Diff to previous 1.96 (colored) to selected 1.93.2.1 (colored)

add options DSRTC_YEAR_START_2K for machines which use 2000 and not 1970
as base to count years from, like Iyonix.
While there apply the offset when writing to the clock as well.

Revision 1.84.2.6 / (download) - annotate - [select for diffs], Thu Sep 6 06:55:49 2018 UTC (5 years, 6 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.84.2.5: +12 -1 lines
Diff to previous 1.84.2.5 (colored) to branchpoint 1.84 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD

Resolve a couple of conflicts (result of the uimin/uimax changes)

Revision 1.96 / (download) - annotate - [select for diffs], Sun Sep 2 01:16:58 2018 UTC (5 years, 6 months ago) by jmcneill
Branch: MAIN
CVS Tags: pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906
Changes since 1.95: +8 -1 lines
Diff to previous 1.95 (colored) to selected 1.93.2.1 (colored)

Add driver for Rockchip RK808 Power Management IC.

Revision 1.95 / (download) - annotate - [select for diffs], Wed Aug 29 01:57:38 2018 UTC (5 years, 7 months ago) by jmcneill
Branch: MAIN
CVS Tags: jdolecek-ncqfixes-base, jdolecek-ncqfixes
Changes since 1.94: +5 -1 lines
Diff to previous 1.94 (colored) to selected 1.93.2.1 (colored)

Add driver for Silergy SY827/SY828 step down regulator.

Revision 1.84.2.5 / (download) - annotate - [select for diffs], Sat Jul 28 04:37:44 2018 UTC (5 years, 8 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.84.2.4: +8 -2 lines
Diff to previous 1.84.2.4 (colored) to branchpoint 1.84 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD

Revision 1.94 / (download) - annotate - [select for diffs], Fri Jul 27 12:02:26 2018 UTC (5 years, 8 months ago) by rkujawa
Branch: MAIN
CVS Tags: pgoyette-compat-0728
Changes since 1.93: +7 -1 lines
Diff to previous 1.93 (colored) to selected 1.93.2.1 (colored)

Add TEA5767 FM radio driver. From Karuna Grewal.

Revision 1.93 / (download) - annotate - [select for diffs], Tue Jun 26 06:34:55 2018 UTC (5 years, 9 months ago) by thorpej
Branch: MAIN
CVS Tags: phil-wifi-base
Branch point for: phil-wifi
Changes since 1.92: +2 -2 lines
Diff to previous 1.92 (colored) to selected 1.93.2.1 (colored)

Remove the i2c "size" locator and corresponding property / attach arg.
It was a hack meant only for EEPROMs, which have another way to specify
size in the config directive ("flag" paramter), as well as a better way
to detect size based on "compatible" string.

Revision 1.84.2.4 / (download) - annotate - [select for diffs], Mon Jun 25 07:25:50 2018 UTC (5 years, 9 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.84.2.3: +6 -1 lines
Diff to previous 1.84.2.3 (colored) to branchpoint 1.84 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD

Revision 1.92 / (download) - annotate - [select for diffs], Sun May 27 05:31:20 2018 UTC (5 years, 10 months ago) by thorpej
Branch: MAIN
CVS Tags: pgoyette-compat-0625
Changes since 1.91: +6 -1 lines
Diff to previous 1.91 (colored) to selected 1.93.2.1 (colored)

Add a driver for the Taos TSL256x light sensors.

Revision 1.84.2.3 / (download) - annotate - [select for diffs], Mon May 21 04:36:05 2018 UTC (5 years, 10 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.84.2.2: +7 -5 lines
Diff to previous 1.84.2.2 (colored) to branchpoint 1.84 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD

Revision 1.91 / (download) - annotate - [select for diffs], Sat May 5 02:01:34 2018 UTC (5 years, 10 months ago) by jmcneill
Branch: MAIN
CVS Tags: pgoyette-compat-0521
Changes since 1.90: +2 -2 lines
Diff to previous 1.90 (colored) to selected 1.93.2.1 (colored)

axppmic depends on sysmon_envsys

Revision 1.90 / (download) - annotate - [select for diffs], Fri May 4 21:09:55 2018 UTC (5 years, 10 months ago) by jmcneill
Branch: MAIN
Changes since 1.89: +7 -7 lines
Diff to previous 1.89 (colored) to selected 1.93.2.1 (colored)

Rename axp806pmic to axppmic, and add support for AXP803.

Revision 1.89 / (download) - annotate - [select for diffs], Thu May 3 02:10:17 2018 UTC (5 years, 10 months ago) by jmcneill
Branch: MAIN
Changes since 1.88: +2 -2 lines
Diff to previous 1.88 (colored) to selected 1.93.2.1 (colored)

Add support for poweroff and the power on-off key (POK).

Revision 1.88 / (download) - annotate - [select for diffs], Thu May 3 01:15:49 2018 UTC (5 years, 10 months ago) by jmcneill
Branch: MAIN
Changes since 1.87: +6 -4 lines
Diff to previous 1.87 (colored) to selected 1.93.2.1 (colored)

FDT-ize X-Powers AXP805/806 PMIC driver.

Revision 1.84.2.2 / (download) - annotate - [select for diffs], Thu Mar 22 01:44:48 2018 UTC (6 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.84.2.1: +2 -2 lines
Diff to previous 1.84.2.1 (colored) to branchpoint 1.84 (colored) to selected 1.93.2.1 (colored)

Synch with HEAD, resolve conflicts

Revision 1.87 / (download) - annotate - [select for diffs], Fri Mar 16 22:11:53 2018 UTC (6 years ago) by macallan
Branch: MAIN
CVS Tags: pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322
Changes since 1.86: +2 -2 lines
Diff to previous 1.86 (colored) to selected 1.93.2.1 (colored)

implement fan control, get calibration data from EEPROM via uni_n

Revision 1.84.2.1 / (download) - annotate - [select for diffs], Thu Mar 15 09:12:05 2018 UTC (6 years ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.84: +11 -1 lines
Diff to previous 1.84 (colored) to selected 1.93.2.1 (colored)

Synch with HEAD

Revision 1.86 / (download) - annotate - [select for diffs], Fri Mar 9 20:16:54 2018 UTC (6 years ago) by macallan
Branch: MAIN
CVS Tags: pgoyette-compat-0315
Changes since 1.85: +6 -1 lines
Diff to previous 1.85 (colored) to selected 1.93.2.1 (colored)

yet another temperature sensor / ADC
this one supports Analog Devices AD7417, found in some G5 macs
depends on OpenFirmware for calibration data

Revision 1.85 / (download) - annotate - [select for diffs], Thu Mar 8 23:25:56 2018 UTC (6 years ago) by macallan
Branch: MAIN
Changes since 1.84: +6 -1 lines
Diff to previous 1.84 (colored) to selected 1.93.2.1 (colored)

preliminary driver for the fan control unit found in some G5

Revision 1.73.4.1 / (download) - annotate - [select for diffs], Thu Feb 15 07:52:17 2018 UTC (6 years, 1 month ago) by martin
Branch: netbsd-8
CVS Tags: netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1
Changes since 1.73: +1 -2 lines
Diff to previous 1.73 (colored) next main 1.74 (colored) to selected 1.93.2.1 (colored)

Pull up following revision(s) (requested by uwe in ticket #548):

	sys/dev/i2c/files.i2c: revision 1.84 (via patch)

Delete 'define dbcool {}' line commented out in previous.  It's bogus
and the gcc6 correctly complains about that when it compiles ioconf.c
PR toolchain/53023

Revision 1.84 / (download) - annotate - [select for diffs], Tue Feb 13 13:19:30 2018 UTC (6 years, 1 month ago) by uwe
Branch: MAIN
CVS Tags: pgoyette-compat-base
Branch point for: pgoyette-compat
Changes since 1.83: +1 -2 lines
Diff to previous 1.83 (colored) to selected 1.93.2.1 (colored)

Delete 'define dbcool {}' line commented out in previous.  It's bogus
and the gcc6 correctly complains about that when it compiles ioconf.c

PR toolchain/53023

Revision 1.83 / (download) - annotate - [select for diffs], Tue Feb 13 07:21:19 2018 UTC (6 years, 1 month ago) by pgoyette
Branch: MAIN
Changes since 1.82: +2 -2 lines
Diff to previous 1.82 (colored) to selected 1.93.2.1 (colored)

Disable the 'define dbcool {}' line - it's not needed, and causes
problems with config(1) and gcc6.  See PR toolchain/530223 for more
info.

Revision 1.82 / (download) - annotate - [select for diffs], Thu Feb 1 21:44:17 2018 UTC (6 years, 1 month ago) by macallan
Branch: MAIN
Changes since 1.81: +6 -1 lines
Diff to previous 1.81 (colored) to selected 1.93.2.1 (colored)

add driver for Maxim DS1631 High-Precision Digital Thermometer and Thermostat
temperature reading only for now

Revision 1.81 / (download) - annotate - [select for diffs], Fri Jan 5 03:07:15 2018 UTC (6 years, 2 months ago) by uwe
Branch: MAIN
Changes since 1.80: +6 -1 lines
Diff to previous 1.80 (colored) to selected 1.93.2.1 (colored)

Driver for EM Microelectronic EM3027 RTC and temperature sensor.

Revision 1.80 / (download) - annotate - [select for diffs], Thu Dec 28 23:23:47 2017 UTC (6 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.79: +11 -1 lines
Diff to previous 1.79 (colored) to selected 1.93.2.1 (colored)

PR/52848: Brad Spencer: Two environment sensor drivers: AM2315 and SI70xx
XXX: Please check that my refactoring did not break them!

Revision 1.79 / (download) - annotate - [select for diffs], Sun Dec 10 17:05:54 2017 UTC (6 years, 3 months ago) by bouyer
Branch: MAIN
Changes since 1.78: +20 -1 lines
Diff to previous 1.78 (colored) to selected 1.93.2.1 (colored)

Add drivers for HID over I2C devices, and a driver for I2C mices.
From OpenBSD.

Revision 1.45.10.4 / (download) - annotate - [select for diffs], Sun Dec 3 11:37:02 2017 UTC (6 years, 3 months ago) by jdolecek
Branch: tls-maxphys
Changes since 1.45.10.3: +74 -4 lines
Diff to previous 1.45.10.3 (colored) to branchpoint 1.45 (colored) next main 1.46 (colored) to selected 1.93.2.1 (colored)

update from HEAD

Revision 1.78 / (download) - annotate - [select for diffs], Sat Oct 7 18:22:06 2017 UTC (6 years, 5 months ago) by jmcneill
Branch: MAIN
CVS Tags: tls-maxphys-base-20171202
Changes since 1.77: +4 -2 lines
Diff to previous 1.77 (colored) to selected 1.93.2.1 (colored)

Hook axp20x into fdt regulator api

Revision 1.77 / (download) - annotate - [select for diffs], Mon Oct 2 22:48:02 2017 UTC (6 years, 5 months ago) by jmcneill
Branch: MAIN
Changes since 1.76: +6 -1 lines
Diff to previous 1.76 (colored) to selected 1.93.2.1 (colored)

Add driver for Silergy SY8106A regulator

Revision 1.76 / (download) - annotate - [select for diffs], Fri Sep 22 18:12:31 2017 UTC (6 years, 6 months ago) by jmcneill
Branch: MAIN
Changes since 1.75: +11 -1 lines
Diff to previous 1.75 (colored) to selected 1.93.2.1 (colored)

Add GPIO drivers for MAX77620 and TCA9539 as found in Jetson TX1

Revision 1.75 / (download) - annotate - [select for diffs], Thu Aug 31 19:55:43 2017 UTC (6 years, 6 months ago) by jmcneill
Branch: MAIN
Changes since 1.74: +2 -2 lines
Diff to previous 1.74 (colored) to selected 1.93.2.1 (colored)

Instead of a Linux keymap, convert Linux event codes to USB scan codes and
use the ukbd keymaps instead.

Revision 1.58.2.5 / (download) - annotate - [select for diffs], Mon Aug 28 17:52:03 2017 UTC (6 years, 7 months ago) by skrll
Branch: nick-nhusb
Changes since 1.58.2.4: +4 -2 lines
Diff to previous 1.58.2.4 (colored) to branchpoint 1.58 (colored) next main 1.59 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD

Revision 1.74 / (download) - annotate - [select for diffs], Sat Aug 26 21:02:35 2017 UTC (6 years, 7 months ago) by jmcneill
Branch: MAIN
Changes since 1.73: +6 -1 lines
Diff to previous 1.73 (colored) to selected 1.93.2.1 (colored)

Add driver for Texas Instruments TCA8418 I2C Controller Keypad Scan IC.

Revision 1.72.2.1 / (download) - annotate - [select for diffs], Wed Apr 26 02:53:11 2017 UTC (6 years, 11 months ago) by pgoyette
Branch: pgoyette-localcount
Changes since 1.72: +4 -2 lines
Diff to previous 1.72 (colored) next main 1.73 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD

Revision 1.73 / (download) - annotate - [select for diffs], Sat Apr 22 21:48:56 2017 UTC (6 years, 11 months ago) by jmcneill
Branch: MAIN
CVS Tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-20170426, perseant-stdc-iso10646-base, perseant-stdc-iso10646, nick-nhusb-base-20170825, netbsd-8-base, matt-nb8-mediatek-base, matt-nb8-mediatek
Branch point for: netbsd-8
Changes since 1.72: +4 -2 lines
Diff to previous 1.72 (colored) to selected 1.93.2.1 (colored)

Add LDO6 regulator support.

Revision 1.58.2.4 / (download) - annotate - [select for diffs], Sat Jul 9 20:25:02 2016 UTC (7 years, 8 months ago) by skrll
Branch: nick-nhusb
Changes since 1.58.2.3: +4 -4 lines
Diff to previous 1.58.2.3 (colored) to branchpoint 1.58 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD

Revision 1.72 / (download) - annotate - [select for diffs], Sun Jul 3 11:40:58 2016 UTC (7 years, 8 months ago) by kiyohara
Branch: MAIN
CVS Tags: pgoyette-localcount-base, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, nick-nhusb-base-20170204, nick-nhusb-base-20161204, nick-nhusb-base-20161004, nick-nhusb-base-20160907, localcount-20160914, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Branch point for: pgoyette-localcount
Changes since 1.71: +2 -2 lines
Diff to previous 1.71 (colored) to selected 1.93.2.1 (colored)

Add 'needs-flag' to tps65217pmic.

Revision 1.71 / (download) - annotate - [select for diffs], Mon Jun 20 04:18:12 2016 UTC (7 years, 9 months ago) by pgoyette
Branch: MAIN
Changes since 1.70: +2 -2 lines
Diff to previous 1.70 (colored) to selected 1.93.2.1 (colored)

For built-in modules, the iic driver requires i2c_bitbang

Revision 1.70 / (download) - annotate - [select for diffs], Tue Jun 7 01:06:27 2016 UTC (7 years, 9 months ago) by pgoyette
Branch: MAIN
Changes since 1.69: +2 -2 lines
Diff to previous 1.69 (colored) to selected 1.93.2.1 (colored)

Create separate modules for i2c_bitbang and bpf_filter so these files
can be included in kernels which need them without also duplicating
them in other modules.  Removes the duplicate symbols I found which
prevented loading i2c and bpf modules after having fixed PR 45125.

Revision 1.58.2.3 / (download) - annotate - [select for diffs], Sun Dec 27 12:09:49 2015 UTC (8 years, 3 months ago) by skrll
Branch: nick-nhusb
Changes since 1.58.2.2: +12 -2 lines
Diff to previous 1.58.2.2 (colored) to branchpoint 1.58 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD (as of 26th Dec)

Revision 1.69 / (download) - annotate - [select for diffs], Wed Dec 16 07:56:48 2015 UTC (8 years, 3 months ago) by jdc
Branch: MAIN
CVS Tags: nick-nhusb-base-20160529, nick-nhusb-base-20160422, nick-nhusb-base-20160319, nick-nhusb-base-20151226
Changes since 1.68: +6 -1 lines
Diff to previous 1.68 (colored) to selected 1.93.2.1 (colored)

Add a driver for the ADM1026 Thermal System Management Fan Controller
i2c chip.

Revision 1.68 / (download) - annotate - [select for diffs], Sat Nov 21 10:57:32 2015 UTC (8 years, 4 months ago) by jmcneill
Branch: MAIN
Changes since 1.67: +2 -2 lines
Diff to previous 1.67 (colored) to selected 1.93.2.1 (colored)

add sysmon_wdog dependency to as3722pmic

Revision 1.67 / (download) - annotate - [select for diffs], Wed Nov 11 12:35:22 2015 UTC (8 years, 4 months ago) by jmcneill
Branch: MAIN
Changes since 1.66: +6 -1 lines
Diff to previous 1.66 (colored) to selected 1.93.2.1 (colored)

Add basic driver for AMS AS3722 power management IC

Revision 1.66 / (download) - annotate - [select for diffs], Wed Oct 21 09:03:13 2015 UTC (8 years, 5 months ago) by jmcneill
Branch: MAIN
Changes since 1.65: +2 -2 lines
Diff to previous 1.65 (colored) to selected 1.93.2.1 (colored)

needs-flag for axp20x

Revision 1.58.2.2 / (download) - annotate - [select for diffs], Sat Jun 6 14:40:07 2015 UTC (8 years, 9 months ago) by skrll
Branch: nick-nhusb
Changes since 1.58.2.1: +6 -1 lines
Diff to previous 1.58.2.1 (colored) to branchpoint 1.58 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD

Revision 1.65 / (download) - annotate - [select for diffs], Tue May 12 20:54:08 2015 UTC (8 years, 10 months ago) by jmcneill
Branch: MAIN
CVS Tags: nick-nhusb-base-20150921, nick-nhusb-base-20150606
Changes since 1.64: +6 -1 lines
Diff to previous 1.64 (colored) to selected 1.93.2.1 (colored)

Add driver for Texas Instruments TMP451 Temperature Sensor

Revision 1.54.2.3 / (download) - annotate - [select for diffs], Fri Apr 17 09:43:47 2015 UTC (8 years, 11 months ago) by msaitoh
Branch: netbsd-7
CVS Tags: netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, 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
Changes since 1.54.2.2: +2 -2 lines
Diff to previous 1.54.2.2 (colored) to branchpoint 1.54 (colored) next main 1.55 (colored) to selected 1.93.2.1 (colored)

Pull up following revision(s) (requested by nonaka in ticket #700):
	sys/dev/i2c/files.i2c: revision 1.58
dsrtc depends on sysmon_envsys.

Revision 1.58.2.1 / (download) - annotate - [select for diffs], Mon Apr 6 15:18:09 2015 UTC (8 years, 11 months ago) by skrll
Branch: nick-nhusb
Changes since 1.58: +22 -1 lines
Diff to previous 1.58 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD

Revision 1.64 / (download) - annotate - [select for diffs], Sun Jan 11 16:54:21 2015 UTC (9 years, 2 months ago) by jmcneill
Branch: MAIN
CVS Tags: nick-nhusb-base-20150406
Changes since 1.63: +1 -6 lines
Diff to previous 1.63 (colored) to selected 1.93.2.1 (colored)

pcf8653 driver is compatible, delete this driver

Revision 1.63 / (download) - annotate - [select for diffs], Sun Jan 11 15:22:26 2015 UTC (9 years, 2 months ago) by jmcneill
Branch: MAIN
Changes since 1.62: +6 -1 lines
Diff to previous 1.62 (colored) to selected 1.93.2.1 (colored)

add Haoyu Microelectronic HYM8563 RTC driver

Revision 1.62 / (download) - annotate - [select for diffs], Thu Jan 1 17:33:18 2015 UTC (9 years, 2 months ago) by jmcneill
Branch: MAIN
Changes since 1.61: +6 -1 lines
Diff to previous 1.61 (colored) to selected 1.93.2.1 (colored)

Add driver for Active-Semi ACT8846 Power Management controller.

Revision 1.61 / (download) - annotate - [select for diffs], Sun Dec 7 14:24:11 2014 UTC (9 years, 3 months ago) by jmcneill
Branch: MAIN
Changes since 1.60: +6 -1 lines
Diff to previous 1.60 (colored) to selected 1.93.2.1 (colored)

Add driver for X-Powers AC100 integrated audio codec and RTC subsystem.
Only RTC functionality implemented for now.

Revision 1.60 / (download) - annotate - [select for diffs], Sun Dec 7 00:33:26 2014 UTC (9 years, 3 months ago) by jmcneill
Branch: MAIN
Changes since 1.59: +11 -1 lines
Diff to previous 1.59 (colored) to selected 1.93.2.1 (colored)

Add AXP806 and AXP809 power management controller drivers.

Revision 1.59 / (download) - annotate - [select for diffs], Sun Dec 7 00:32:35 2014 UTC (9 years, 3 months ago) by jmcneill
Branch: MAIN
Changes since 1.58: +2 -1 lines
Diff to previous 1.58 (colored) to selected 1.93.2.1 (colored)

Let kernel config override I2C_MAX_ADDR

Revision 1.54.2.2 / (download) - annotate - [select for diffs], Fri Nov 14 10:04:40 2014 UTC (9 years, 4 months ago) by martin
Branch: netbsd-7
Changes since 1.54.2.1: +6 -1 lines
Diff to previous 1.54.2.1 (colored) to branchpoint 1.54 (colored) to selected 1.93.2.1 (colored)

Pull up following revision(s) (requested by skrll in ticket #230):
	sys/dev/i2c/axp22x.c: revision 1.1
	etc/etc.evbarm/Makefile.inc: revisions 1.65-1.66
	sys/arch/evbarm/conf/HUMMINGBIRD_A31: revisions 1.1-1.15
	sys/arch/evbarm/conf/HUMMINGBIRD_A31_INSTALL: revisions 1.1-1.3
	sys/dev/i2c/axp22x.c: revision 1.1
	sys/dev/i2c/files.i2c: revision 1.57

Add Merrii Hummingbird A31 board kernels.
Add AXP22x Power Management Unit driver.

Revision 1.54.2.1 / (download) - annotate - [select for diffs], Wed Nov 12 20:07:20 2014 UTC (9 years, 4 months ago) by martin
Branch: netbsd-7
Changes since 1.54: +6 -1 lines
Diff to previous 1.54 (colored) to selected 1.93.2.1 (colored)

Pull up following revision(s) (requested by skrll in ticket #223):
	sys/arch/evbarm/conf/std.awin: revision 1.2
	sys/dev/i2c/axp20x.c: revision 1.1
	sys/dev/i2c/axp20x.c: revision 1.2
	sys/dev/i2c/gttwsireg.h: revision 1.2
	sys/dev/i2c/files.i2c: revision 1.55
	sys/dev/i2c/files.i2c: revision 1.56
AllWinner implementation uses a different register layout, select it with options GTTWSI_ALLWINNER
AXP20x Power Management Unit driver, pretty basic at the moment -- only acts as a temperature sensor
fix a sizeof typo
options GTTWSI_ALLWINNER

Revision 1.58 / (download) - annotate - [select for diffs], Wed Oct 15 05:11:36 2014 UTC (9 years, 5 months ago) by uebayasi
Branch: MAIN
CVS Tags: nick-nhusb-base
Branch point for: nick-nhusb
Changes since 1.57: +2 -2 lines
Diff to previous 1.57 (colored) to selected 1.93.2.1 (colored)

dsrtc depends on sysmon_envsys.

Revision 1.57 / (download) - annotate - [select for diffs], Sun Oct 12 23:58:42 2014 UTC (9 years, 5 months ago) by jmcneill
Branch: MAIN
Changes since 1.56: +6 -1 lines
Diff to previous 1.56 (colored) to selected 1.93.2.1 (colored)

add AXP22x Power Management Unit driver

Revision 1.56 / (download) - annotate - [select for diffs], Tue Sep 9 22:47:33 2014 UTC (9 years, 6 months ago) by jmcneill
Branch: MAIN
Changes since 1.55: +5 -1 lines
Diff to previous 1.55 (colored) to selected 1.93.2.1 (colored)

AXP20x Power Management Unit driver, pretty basic at the moment -- only acts as a temperature sensor

Revision 1.55 / (download) - annotate - [select for diffs], Tue Sep 9 22:44:32 2014 UTC (9 years, 6 months ago) by jmcneill
Branch: MAIN
Changes since 1.54: +2 -1 lines
Diff to previous 1.54 (colored) to selected 1.93.2.1 (colored)

AllWinner implementation uses a different register layout, select it with options GTTWSI_ALLWINNER

Revision 1.45.10.3 / (download) - annotate - [select for diffs], Wed Aug 20 00:03:37 2014 UTC (9 years, 7 months ago) by tls
Branch: tls-maxphys
Changes since 1.45.10.2: +27 -0 lines
Diff to previous 1.45.10.2 (colored) to branchpoint 1.45 (colored) to selected 1.93.2.1 (colored)

Rebase to HEAD as of a few days ago.

Revision 1.53.2.1 / (download) - annotate - [select for diffs], Sun Aug 10 06:54:51 2014 UTC (9 years, 7 months ago) by tls
Branch: tls-earlyentropy
Changes since 1.53: +6 -1 lines
Diff to previous 1.53 (colored) next main 1.54 (colored) to selected 1.93.2.1 (colored)

Rebase.

Revision 1.44.2.3 / (download) - annotate - [select for diffs], Thu May 22 11:40:21 2014 UTC (9 years, 10 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.44.2.2: +34 -1 lines
Diff to previous 1.44.2.2 (colored) to branchpoint 1.44 (colored) next main 1.45 (colored) to selected 1.93.2.1 (colored)

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.49.4.2 / (download) - annotate - [select for diffs], Sun May 18 17:45:37 2014 UTC (9 years, 10 months ago) by rmind
Branch: rmind-smpnet
Changes since 1.49.4.1: +24 -1 lines
Diff to previous 1.49.4.1 (colored) to branchpoint 1.49 (colored) next main 1.50 (colored) to selected 1.93.2.1 (colored)

sync with head

Revision 1.54 / (download) - annotate - [select for diffs], Sun May 18 11:46:23 2014 UTC (9 years, 10 months ago) by kardel
Branch: MAIN
CVS Tags: tls-maxphys-base, tls-earlyentropy-base, rmind-smpnet-nbase, rmind-smpnet-base, netbsd-7-base
Branch point for: netbsd-7
Changes since 1.53: +6 -1 lines
Diff to previous 1.53 (colored) to selected 1.93.2.1 (colored)

add HYT-221/271/939 humidity/temperature I2C sensor
extend envsys(4) framework by %rH (relative humidity)

Revision 1.23.10.1 / (download) - annotate - [select for diffs], Mon Mar 24 18:48:52 2014 UTC (10 years ago) by matt
Branch: matt-nb5-mips64
Changes since 1.23: +7 -1 lines
Diff to previous 1.23 (colored) next main 1.24 (colored) to selected 1.93.2.1 (colored)

Merge mvi2c from HEAD

Revision 1.53 / (download) - annotate - [select for diffs], Tue Oct 15 19:13:32 2013 UTC (10 years, 5 months ago) by jdc
Branch: MAIN
CVS Tags: yamt-pagecache-base9, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3
Branch point for: tls-earlyentropy
Changes since 1.52: +6 -1 lines
Diff to previous 1.52 (colored) to selected 1.93.2.1 (colored)

Add lmenv to the configuration framework.

Revision 1.52 / (download) - annotate - [select for diffs], Sun Sep 8 14:59:42 2013 UTC (10 years, 6 months ago) by rkujawa
Branch: MAIN
Changes since 1.51: +7 -1 lines
Diff to previous 1.51 (colored) to selected 1.93.2.1 (colored)

Preliminary support for MPL115A2 pressure sensor. It works, but accurracy is
awful.

I should add presure as a new type of sensor to envsys at some point...

Revision 1.51 / (download) - annotate - [select for diffs], Fri Sep 6 00:56:12 2013 UTC (10 years, 6 months ago) by matt
Branch: MAIN
Changes since 1.50: +8 -1 lines
Diff to previous 1.50 (colored) to selected 1.93.2.1 (colored)

Make gttswi MI and usuable from non-Marvell SoCs.
(should rename to mvi2c but ...)

Revision 1.49.4.1 / (download) - annotate - [select for diffs], Wed Aug 28 23:59:25 2013 UTC (10 years, 7 months ago) by rmind
Branch: rmind-smpnet
Changes since 1.49: +5 -1 lines
Diff to previous 1.49 (colored) to selected 1.93.2.1 (colored)

sync with head

Revision 1.45.6.1 / (download) - annotate - [select for diffs], Sat Aug 10 22:50:56 2013 UTC (10 years, 7 months ago) by riz
Branch: netbsd-6
Changes since 1.45: +6 -1 lines
Diff to previous 1.45 (colored) next main 1.46 (colored) to selected 1.93.2.1 (colored)

Pull up following revision(s) (requested by matt in ticket #929):
	sys/dev/i2c/w83795g.c: revision 1.1
	sys/dev/i2c/w83795greg.h: revision 1.1
	sys/dev/i2c/files.i2c: revision 1.50
Add driver for Nuvoton W83795G voltage/temp/fan/gpio monitoring device.
As used in the HP Microserver N36L/N40L/N54L:
w83795g* at iic? addr 0x2f
gpio* at gpiobus?
Note that the gpio and watchdog functionality appears to be useless on
the Microserver, as the gpio pins don't affect the LED's and a watchdog
trigger does not cause a reset. Perhaps the reset pin just isn't wired.
There are quite flexible fan control options as well as just monitoring,
but it is not clear to me how best to export that function to userspace.

Revision 1.50 / (download) - annotate - [select for diffs], Tue Aug 6 15:58:25 2013 UTC (10 years, 7 months ago) by soren
Branch: MAIN
Changes since 1.49: +5 -1 lines
Diff to previous 1.49 (colored) to selected 1.93.2.1 (colored)

Add driver for Nuvoton W83795G voltage/temp/fan/gpio monitoring device.

As used in the HP Microserver N36L/N40L/N54L:

w83795g* at iic? addr 0x2f
gpio* at gpiobus?

Note that the gpio and watchdog functionality appears to be useless on
the Microserver, as the gpio pins don't affect the LED's and a watchdog
trigger does not cause a reset. Perhaps the reset pin just isn't wired.

There are quite flexible fan control options as well as just monitoring,
but it is not clear to me how best to export that function to userspace.

Revision 1.45.10.2 / (download) - annotate - [select for diffs], Sun Jun 23 06:20:17 2013 UTC (10 years, 9 months ago) by tls
Branch: tls-maxphys
Changes since 1.45.10.1: +12 -1 lines
Diff to previous 1.45.10.1 (colored) to branchpoint 1.45 (colored) to selected 1.93.2.1 (colored)

resync from head

Revision 1.49.2.4 / (download) - annotate - [select for diffs], Thu May 16 15:36:50 2013 UTC (10 years, 10 months ago) by khorben
Branch: khorben-n900
Changes since 1.49.2.3: +5 -1 lines
Diff to previous 1.49.2.3 (colored) to branchpoint 1.49 (colored) next main 1.50 (colored) to selected 1.93.2.1 (colored)

Initial import of the lp5523led(4) driver, a programmable 9-output LED
driver from Texas Instruments. This is not functional yet, but exposes
sysctl nodes and the internal temperature sensor (not refreshed at the
moment).

Tested on my Nokia N900 smartphone.

Revision 1.49.2.3 / (download) - annotate - [select for diffs], Sun May 12 01:49:44 2013 UTC (10 years, 10 months ago) by khorben
Branch: khorben-n900
Changes since 1.49.2.2: +2 -2 lines
Diff to previous 1.49.2.2 (colored) to branchpoint 1.49 (colored) to selected 1.93.2.1 (colored)

Added keyboard support for the TPS65950 companion chip.

Tested on the Nokia N900 (multi-user)

Revision 1.49.2.2 / (download) - annotate - [select for diffs], Sun May 12 00:56:28 2013 UTC (10 years, 10 months ago) by khorben
Branch: khorben-n900
Changes since 1.49.2.1: +2 -2 lines
Diff to previous 1.49.2.1 (colored) to branchpoint 1.49 (colored) to selected 1.93.2.1 (colored)

tps65950pm(4) can now expose a GPIO bus.

Revision 1.49.2.1 / (download) - annotate - [select for diffs], Fri May 10 01:10:02 2013 UTC (10 years, 10 months ago) by khorben
Branch: khorben-n900
Changes since 1.49: +2 -2 lines
Diff to previous 1.49 (colored) to selected 1.93.2.1 (colored)

Added two locators for I2C devices: "intr" and "intrbase".

They are required to allow the TPS65950 companion chip to both handle its
interrupts on the system, and allow its extra GPIO pins to be used as
interrupts as well.

XXX This change is not adequate because intr_establish() is a MD interface,
    so it will have to be re-designed before merging to the main tree.

Revision 1.49 / (download) - annotate - [select for diffs], Mon May 6 22:04:12 2013 UTC (10 years, 10 months ago) by rkujawa
Branch: MAIN
CVS Tags: riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2
Branch point for: rmind-smpnet, khorben-n900
Changes since 1.48: +6 -1 lines
Diff to previous 1.48 (colored) to selected 1.93.2.1 (colored)

Add driver for Microchip MCP9800/1/2/3 temperature sensors.

Revision 1.48 / (download) - annotate - [select for diffs], Thu Apr 25 20:55:34 2013 UTC (10 years, 11 months ago) by rkujawa
Branch: MAIN
Changes since 1.47: +7 -1 lines
Diff to previous 1.47 (colored) to selected 1.93.2.1 (colored)

Add minimal support for TPS65217 PMIC as found on BeagleBone. Next step is to
expose regulated voltages through envsys(4).

Revision 1.45.10.1 / (download) - annotate - [select for diffs], Mon Feb 25 00:29:13 2013 UTC (11 years, 1 month ago) by tls
Branch: tls-maxphys
Changes since 1.45: +6 -1 lines
Diff to previous 1.45 (colored) to selected 1.93.2.1 (colored)

resync with head

Revision 1.44.2.2 / (download) - annotate - [select for diffs], Wed Jan 23 00:06:06 2013 UTC (11 years, 2 months ago) by yamt
Branch: yamt-pagecache
CVS Tags: yamt-pagecache-tag8
Changes since 1.44.2.1: +6 -1 lines
Diff to previous 1.44.2.1 (colored) to branchpoint 1.44 (colored) to selected 1.93.2.1 (colored)

sync with head

Revision 1.47 / (download) - annotate - [select for diffs], Mon Dec 31 19:47:27 2012 UTC (11 years, 2 months ago) by jmcneill
Branch: MAIN
CVS Tags: yamt-pagecache-base8, agc-symver-base, agc-symver
Changes since 1.46: +2 -2 lines
Diff to previous 1.46 (colored) to selected 1.93.2.1 (colored)

add support for TPS65950 watchdog timer

Revision 1.46 / (download) - annotate - [select for diffs], Mon Dec 31 13:26:42 2012 UTC (11 years, 2 months ago) by jmcneill
Branch: MAIN
Changes since 1.45: +6 -1 lines
Diff to previous 1.45 (colored) to selected 1.93.2.1 (colored)

TI TPS65950 driver, right now about all it can do is control LEDs

Revision 1.44.2.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:07:30 2012 UTC (11 years, 11 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.44: +1 -11 lines
Diff to previous 1.44 (colored) to selected 1.93.2.1 (colored)

sync with head

Revision 1.45 / (download) - annotate - [select for diffs], Fri Nov 18 22:18:08 2011 UTC (12 years, 4 months ago) by jmcneill
Branch: MAIN
CVS Tags: yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, yamt-pagecache-base4, 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, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus, 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
Branch point for: tls-maxphys, netbsd-6
Changes since 1.44: +1 -11 lines
Diff to previous 1.44 (colored) to selected 1.93.2.1 (colored)

remove Xbox support

Revision 1.44 / (download) - annotate - [select for diffs], Mon Oct 3 22:27:23 2011 UTC (12 years, 5 months ago) by jmcneill
Branch: MAIN
CVS Tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base
Branch point for: yamt-pagecache
Changes since 1.43: +3 -2 lines
Diff to previous 1.43 (colored) to selected 1.93.2.1 (colored)

fix build for kernels with i2c host controller drivers but no iic(4)
driver present

Revision 1.43 / (download) - annotate - [select for diffs], Sun Oct 2 16:39:47 2011 UTC (12 years, 5 months ago) by jmcneill
Branch: MAIN
Changes since 1.42: +2 -2 lines
Diff to previous 1.42 (colored) to selected 1.93.2.1 (colored)

Install dev/i2c/i2c_io.h and implement the API in the iic(4) driver.
Obsolete the I2C_SCAN option as this can now be done from userland.

Revision 1.42 / (download) - annotate - [select for diffs], Sat Aug 13 18:31:38 2011 UTC (12 years, 7 months ago) by jmcneill
Branch: MAIN
Changes since 1.41: +3 -3 lines
Diff to previous 1.41 (colored) to selected 1.93.2.1 (colored)

lg3303 depends on dtv_math, not xc3028

Revision 1.41 / (download) - annotate - [select for diffs], Tue Aug 9 01:42:24 2011 UTC (12 years, 7 months ago) by jmcneill
Branch: MAIN
Changes since 1.40: +2 -2 lines
Diff to previous 1.40 (colored) to selected 1.93.2.1 (colored)

modify the dtv device api so hardware drivers can be loaded independently
of the dtv module

Revision 1.40 / (download) - annotate - [select for diffs], Thu Aug 4 01:48:34 2011 UTC (12 years, 7 months ago) by jakllsch
Branch: MAIN
Changes since 1.39: +5 -1 lines
Diff to previous 1.39 (colored) to selected 1.93.2.1 (colored)

Add Conexant/Samsung CX24227/S5H1409 demodulator subroutines.

Revision 1.39 / (download) - annotate - [select for diffs], Thu Aug 4 01:45:37 2011 UTC (12 years, 7 months ago) by jakllsch
Branch: MAIN
Changes since 1.38: +5 -1 lines
Diff to previous 1.38 (colored) to selected 1.93.2.1 (colored)

Add subroutines to support Microtune MT2131 silicon tuner.

Revision 1.38 / (download) - annotate - [select for diffs], Thu Jul 14 23:43:37 2011 UTC (12 years, 8 months ago) by jmcneill
Branch: MAIN
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored) to selected 1.93.2.1 (colored)

nxt2k depends on firmload

Revision 1.37 / (download) - annotate - [select for diffs], Mon Jul 11 18:00:06 2011 UTC (12 years, 8 months ago) by jmcneill
Branch: MAIN
Changes since 1.36: +10 -2 lines
Diff to previous 1.36 (colored) to selected 1.93.2.1 (colored)

add LGDT3303 tuner and XC3028L demod drivers

Revision 1.36 / (download) - annotate - [select for diffs], Mon Jul 11 00:30:23 2011 UTC (12 years, 8 months ago) by jakllsch
Branch: MAIN
Changes since 1.35: +5 -1 lines
Diff to previous 1.35 (colored) to selected 1.93.2.1 (colored)

Add subdriver for Nextwave (subsequently acquired by ATI, then AMD, and
finally Broadcom) NXT200x series of 8VSB/QAM demodulator.

Still a bit crude and only supports the NXT2004 at this point.

Revision 1.35 / (download) - annotate - [select for diffs], Mon Jul 11 00:01:51 2011 UTC (12 years, 8 months ago) by jakllsch
Branch: MAIN
Changes since 1.34: +6 -1 lines
Diff to previous 1.34 (colored) to selected 1.93.2.1 (colored)

Add subdriver for generic PLL-based TV tuners.

Revision 1.31.2.1 / (download) - annotate - [select for diffs], Mon Jun 6 09:07:49 2011 UTC (12 years, 9 months ago) by jruoho
Branch: jruoho-x86intr
Changes since 1.31: +16 -1 lines
Diff to previous 1.31 (colored) next main 1.32 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.26.2.3 / (download) - annotate - [select for diffs], Thu Apr 21 01:41:46 2011 UTC (12 years, 11 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.26.2.2: +5 -0 lines
Diff to previous 1.26.2.2 (colored) to branchpoint 1.26 (colored) next main 1.27 (colored) to selected 1.93.2.1 (colored)

sync with head

Revision 1.34 / (download) - annotate - [select for diffs], Mon Apr 4 17:58:40 2011 UTC (12 years, 11 months ago) by phx
Branch: MAIN
CVS Tags: rmind-uvmplock-nbase, rmind-uvmplock-base, cherry-xenmp-base, cherry-xenmp
Changes since 1.33: +6 -1 lines
Diff to previous 1.33 (colored) to selected 1.93.2.1 (colored)

s390rtc(4), an RTC driver for the Seiko Instruments S-35390A chip.

Revision 1.26.2.2 / (download) - annotate - [select for diffs], Sat Mar 5 20:53:10 2011 UTC (13 years ago) by rmind
Branch: rmind-uvmplock
Changes since 1.26.2.1: +32 -1 lines
Diff to previous 1.26.2.1 (colored) to branchpoint 1.26 (colored) to selected 1.93.2.1 (colored)

sync with head

Revision 1.31.4.2 / (download) - annotate - [select for diffs], Thu Feb 17 12:00:11 2011 UTC (13 years, 1 month ago) by bouyer
Branch: bouyer-quota2
Changes since 1.31.4.1: +6 -1 lines
Diff to previous 1.31.4.1 (colored) to branchpoint 1.31 (colored) next main 1.32 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD

Revision 1.33 / (download) - annotate - [select for diffs], Mon Feb 14 08:50:39 2011 UTC (13 years, 1 month ago) by hannken
Branch: MAIN
CVS Tags: bouyer-quota2-nbase, bouyer-quota2-base
Changes since 1.32: +6 -1 lines
Diff to previous 1.32 (colored) to selected 1.93.2.1 (colored)

Initial implementation of ibmhawk(4) driver for sensors behind the IBM Hawk
on-board Integrated Systems Management Processor found on some eServers.

Tested on an IBM eServer x335.

Revision 1.31.4.1 / (download) - annotate - [select for diffs], Tue Feb 8 16:19:48 2011 UTC (13 years, 1 month ago) by bouyer
Branch: bouyer-quota2
Changes since 1.31: +6 -1 lines
Diff to previous 1.31 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD

Revision 1.32 / (download) - annotate - [select for diffs], Fri Jan 21 19:11:47 2011 UTC (13 years, 2 months ago) by jakllsch
Branch: MAIN
Changes since 1.31: +6 -1 lines
Diff to previous 1.31 (colored) to selected 1.93.2.1 (colored)

Add pcf8563rtc(4), yet another I2C real time clock.

Revision 1.23.14.1 / (download) - annotate - [select for diffs], Fri Jan 7 01:19:15 2011 UTC (13 years, 2 months ago) by matt
Branch: matt-nb5-pq3
Changes since 1.23: +7 -1 lines
Diff to previous 1.23 (colored) next main 1.24 (colored) to selected 1.93.2.1 (colored)

Add revamped support for motorola/freescale embedded i2c SoC controllers.

Revision 1.31 / (download) - annotate - [select for diffs], Tue Jan 4 01:24:56 2011 UTC (13 years, 2 months ago) by matt
Branch: MAIN
CVS Tags: jruoho-x86intr-base
Branch point for: jruoho-x86intr, bouyer-quota2
Changes since 1.30: +7 -1 lines
Diff to previous 1.30 (colored) to selected 1.93.2.1 (colored)

Add a generic Motorola/Freescale i2c driver.  This was taken from sandpoint
and heavily modified.  It works on most Freescale PowerPC and ARM SoCs.

Revision 1.30 / (download) - annotate - [select for diffs], Mon Dec 27 20:42:51 2010 UTC (13 years, 3 months ago) by jmcneill
Branch: MAIN
CVS Tags: matt-mips64-premerge-20101231
Changes since 1.29: +9 -1 lines
Diff to previous 1.29 (colored) to selected 1.93.2.1 (colored)

add au8522, xc5k, auvitek config glue

Revision 1.25.2.2 / (download) - annotate - [select for diffs], Fri Oct 22 07:21:55 2010 UTC (13 years, 5 months ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.25.2.1: +7 -0 lines
Diff to previous 1.25.2.1 (colored) to branchpoint 1.25 (colored) next main 1.26 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD (-D20101022).

Revision 1.29 / (download) - annotate - [select for diffs], Sun Oct 10 05:17:44 2010 UTC (13 years, 5 months ago) by kiyohara
Branch: MAIN
CVS Tags: uebayasi-xip-base4, uebayasi-xip-base3
Changes since 1.28: +3 -1 lines
Diff to previous 1.28 (colored) to selected 1.93.2.1 (colored)

Add options STRTC_NO_USERRAM and STRTC_NO_WATCHDOG for m41t80.

Revision 1.16.24.5 / (download) - annotate - [select for diffs], Sat Oct 9 03:32:05 2010 UTC (13 years, 5 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.16.24.4: +6 -1 lines
Diff to previous 1.16.24.4 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored) to selected 1.93.2.1 (colored)

sync with head

Revision 1.28 / (download) - annotate - [select for diffs], Sat Oct 2 06:07:37 2010 UTC (13 years, 5 months ago) by kiyohara
Branch: MAIN
CVS Tags: yamt-nfs-mp-base11
Changes since 1.27: +6 -1 lines
Diff to previous 1.27 (colored) to selected 1.93.2.1 (colored)

Add G760a fan speed controller driver.

Revision 1.16.24.4 / (download) - annotate - [select for diffs], Wed Aug 11 22:53:22 2010 UTC (13 years, 7 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.16.24.3: +3 -4 lines
Diff to previous 1.16.24.3 (colored) to branchpoint 1.16 (colored) to selected 1.93.2.1 (colored)

sync with head.

Revision 1.26.2.1 / (download) - annotate - [select for diffs], Sun May 30 05:17:20 2010 UTC (13 years, 10 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.26: +3 -4 lines
Diff to previous 1.26 (colored) to selected 1.93.2.1 (colored)

sync with head

Revision 1.25.2.1 / (download) - annotate - [select for diffs], Fri Apr 30 14:43:11 2010 UTC (13 years, 11 months ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.25: +8 -4 lines
Diff to previous 1.25 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.27 / (download) - annotate - [select for diffs], Wed Mar 24 00:31:41 2010 UTC (14 years ago) by pgoyette
Branch: MAIN
CVS Tags: yamt-nfs-mp-base10, uebayasi-xip-base2, uebayasi-xip-base1
Changes since 1.26: +3 -4 lines
Diff to previous 1.26 (colored) to selected 1.93.2.1 (colored)

Split spdmem driver into a bus attachment and a common back-end
probe and ROM decode, to follow similar changes made in OpenBSD:

        http://article.gmane.org/gmane.os.openbsd.cvs/94948
        http://article.gmane.org/gmane.os.openbsd.cvs/94956

There exists at least one alternative attachment (for SGI IP35
systems; see http://article.gmane.org/gmane.os.openbsd.cvs/94947),
and there could be more in the future.

Thanks to Christoph Egger for pointing out the OpenBSD activity.

Revision 1.16.24.3 / (download) - annotate - [select for diffs], Thu Mar 11 15:03:27 2010 UTC (14 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.16.24.2: +6 -1 lines
Diff to previous 1.16.24.2 (colored) to branchpoint 1.16 (colored) to selected 1.93.2.1 (colored)

sync with head

Revision 1.26 / (download) - annotate - [select for diffs], Mon Feb 22 03:50:56 2010 UTC (14 years, 1 month ago) by pgoyette
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9
Branch point for: rmind-uvmplock
Changes since 1.25: +6 -1 lines
Diff to previous 1.25 (colored) to selected 1.93.2.1 (colored)

Import smcsmon(4) driver for SMSC LPC47M192 hardware monitor

From Takahiro HAYASHI in PR kern/40420

Revision 1.23.6.2 / (download) - annotate - [select for diffs], Thu Jul 23 23:31:47 2009 UTC (14 years, 8 months ago) by jym
Branch: jym-xensuspend
Changes since 1.23.6.1: +2 -2 lines
Diff to previous 1.23.6.1 (colored) to branchpoint 1.23 (colored) next main 1.24 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.16.24.2 / (download) - annotate - [select for diffs], Sat May 16 10:41:21 2009 UTC (14 years, 10 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.16.24.1: +6 -1 lines
Diff to previous 1.16.24.1 (colored) to branchpoint 1.16 (colored) to selected 1.93.2.1 (colored)

sync with head

Revision 1.25 / (download) - annotate - [select for diffs], Thu May 14 13:22:26 2009 UTC (14 years, 10 months ago) by pgoyette
Branch: MAIN
CVS Tags: yamt-nfs-mp-base8, yamt-nfs-mp-base7, yamt-nfs-mp-base6, yamt-nfs-mp-base5, yamt-nfs-mp-base4, uebayasi-xip-base, matt-premerge-20091211, jymxensuspend-base, jym-xensuspend-nbase
Branch point for: uebayasi-xip
Changes since 1.24: +2 -2 lines
Diff to previous 1.24 (colored) to selected 1.93.2.1 (colored)

Ooops - sdtemp(4) driver requires sysmon.

Revision 1.23.6.1 / (download) - annotate - [select for diffs], Wed May 13 17:19:20 2009 UTC (14 years, 10 months ago) by jym
Branch: jym-xensuspend
Changes since 1.23: +6 -1 lines
Diff to previous 1.23 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

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

Revision 1.24 / (download) - annotate - [select for diffs], Sat May 9 15:04:25 2009 UTC (14 years, 10 months ago) by pgoyette
Branch: MAIN
CVS Tags: jym-xensuspend-base
Changes since 1.23: +6 -1 lines
Diff to previous 1.23 (colored) to selected 1.93.2.1 (colored)

Initial implementation of sdtemp(4) driver for on-DIMM temp sensor.

(These optional sensors are specified by JEDEC Standard No. 21-C
Section 4-7 and implemented by multiple vendors.  Tested on my
amd64 machine with Kingston KVR1066D3E7S/2G memory which includes
a STMicro STTS424E02 sensor.)

Revision 1.16.24.1 / (download) - annotate - [select for diffs], Mon May 4 08:12:39 2009 UTC (14 years, 10 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.16: +17 -19 lines
Diff to previous 1.16 (colored) to selected 1.93.2.1 (colored)

sync with head.

Revision 1.21.2.1 / (download) - annotate - [select for diffs], Mon Jan 19 13:17:53 2009 UTC (15 years, 2 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.21: +6 -1 lines
Diff to previous 1.21 (colored) next main 1.22 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.16.20.3 / (download) - annotate - [select for diffs], Sat Jan 17 13:28:54 2009 UTC (15 years, 2 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.16.20.2: +9 -18 lines
Diff to previous 1.16.20.2 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.16.30.2 / (download) - annotate - [select for diffs], Sat Dec 13 01:14:13 2008 UTC (15 years, 3 months ago) by haad
Branch: haad-dm
Changes since 1.16.30.1: +6 -1 lines
Diff to previous 1.16.30.1 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored) to selected 1.93.2.1 (colored)

Update haad-dm branch to haad-dm-base2.

Revision 1.23 / (download) - annotate - [select for diffs], Thu Oct 30 12:52:46 2008 UTC (15 years, 5 months ago) by nakayama
Branch: MAIN
CVS Tags: yamt-nfs-mp-base3, nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base2, nick-hppapmap-base, 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, matt-nb5-pq3-base, 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-nb4-mips64-k7-u2a-k9b, haad-nbase2, haad-dm-base2, haad-dm-base, ad-audiomp2-base, ad-audiomp2
Branch point for: matt-nb5-pq3, matt-nb5-mips64, jym-xensuspend
Changes since 1.22: +2 -3 lines
Diff to previous 1.22 (colored) to selected 1.93.2.1 (colored)

Add dependency on sysmon_envsys to admtemp.

Revision 1.22 / (download) - annotate - [select for diffs], Wed Oct 29 17:26:56 2008 UTC (15 years, 5 months ago) by jkunz
Branch: MAIN
Changes since 1.21: +7 -1 lines
Diff to previous 1.21 (colored) to selected 1.93.2.1 (colored)

Ported alipm(4) and admtemp(4) from OpenBSD.

Revision 1.16.30.1 / (download) - annotate - [select for diffs], Sun Oct 19 22:16:25 2008 UTC (15 years, 5 months ago) by haad
Branch: haad-dm
Changes since 1.16: +12 -19 lines
Diff to previous 1.16 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.21 / (download) - annotate - [select for diffs], Sun Oct 12 13:17:28 2008 UTC (15 years, 5 months ago) by pgoyette
Branch: MAIN
CVS Tags: matt-mips64-base2, haad-dm-base1
Branch point for: nick-hppapmap
Changes since 1.20: +5 -1 lines
Diff to previous 1.20 (colored) to selected 1.93.2.1 (colored)

Add an i2c attachment for the LM78 family of temp sensor/fan control

Tested by Martin Husemann

Revision 1.16.26.3 / (download) - annotate - [select for diffs], Fri Oct 10 22:30:58 2008 UTC (15 years, 5 months ago) by skrll
Branch: wrstuden-revivesa
Changes since 1.16.26.2: +6 -18 lines
Diff to previous 1.16.26.2 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.20 / (download) - annotate - [select for diffs], Tue Oct 7 19:32:30 2008 UTC (15 years, 5 months ago) by pgoyette
Branch: MAIN
CVS Tags: wrstuden-revivesa-base-4
Changes since 1.19: +1 -19 lines
Diff to previous 1.19 (colored) to selected 1.93.2.1 (colored)

Remove chip-specific drivers for ADT7463, ADT7467, and ADM1030;  these
have been superseded by the dbcool(4) driver.

Revision 1.16.20.2 / (download) - annotate - [select for diffs], Sun Oct 5 20:11:29 2008 UTC (15 years, 5 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.16.20.1: +6 -0 lines
Diff to previous 1.16.20.1 (colored) to branchpoint 1.16 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.19 / (download) - annotate - [select for diffs], Thu Oct 2 00:47:51 2008 UTC (15 years, 5 months ago) by pgoyette
Branch: MAIN
Changes since 1.18: +7 -1 lines
Diff to previous 1.18 (colored) to selected 1.93.2.1 (colored)

Add new driver for dbCool(tm) family of Thermal Monitor and Fan Controller.
Supported chips: ADM1027, ADM1030, ADT7463, ADT7466, ADT7467, ADT7468,
ADT7473, ADT7475, and ADT7476.  Notably missing is the ADT7490, and fan
controller support on the ADT7466 is still on the to-do list.

Tested by myself and njoly@
Reviewed by garbled@
Commit approved by christos@, bouyer@, cube@, and matt@

Revision 1.16.20.1 / (download) - annotate - [select for diffs], Sun Sep 28 10:40:21 2008 UTC (15 years, 6 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.16: +3 -2 lines
Diff to previous 1.16 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.16.26.2 / (download) - annotate - [select for diffs], Wed Sep 24 16:38:52 2008 UTC (15 years, 6 months ago) by wrstuden
Branch: wrstuden-revivesa
Changes since 1.16.26.1: +2 -1 lines
Diff to previous 1.16.26.1 (colored) to branchpoint 1.16 (colored) to selected 1.93.2.1 (colored)

Merge in changes between wrstuden-revivesa-base-2 and
wrstuden-revivesa-base-3.

Revision 1.16.26.1 / (download) - annotate - [select for diffs], Thu Sep 18 04:35:03 2008 UTC (15 years, 6 months ago) by wrstuden
Branch: wrstuden-revivesa
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored) to selected 1.93.2.1 (colored)

Sync with wrstuden-revivesa-base-2.

Revision 1.18 / (download) - annotate - [select for diffs], Thu Sep 11 20:48:50 2008 UTC (15 years, 6 months ago) by pgoyette
Branch: MAIN
CVS Tags: wrstuden-revivesa-base-3
Changes since 1.17: +2 -1 lines
Diff to previous 1.17 (colored) to selected 1.93.2.1 (colored)

Provide an option I2C_SCAN to enable sanning i2c bus for responses.  This
is disabled by default, preserving current behavior.

OK garbled@

Revision 1.17 / (download) - annotate - [select for diffs], Tue Aug 26 16:29:14 2008 UTC (15 years, 7 months ago) by macallan
Branch: MAIN
CVS Tags: wrstuden-revivesa-base-2
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored) to selected 1.93.2.1 (colored)

allow wildcard for addr so we can have spdmem* at iic? addr ?

Revision 1.10.16.1 / (download) - annotate - [select for diffs], Sat Nov 10 02:57:02 2007 UTC (16 years, 4 months ago) by matt
Branch: matt-nb4-arm
Changes since 1.10: +6 -1 lines
Diff to previous 1.10 (colored) next main 1.11 (colored) to selected 1.93.2.1 (colored)

Add AT91 support from Sami Kantoluoto
Add TI OMAP2430 support from Marty Fouts @ Danger Inc

Revision 1.15.2.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:26:09 2007 UTC (16 years, 4 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.15: +4 -3 lines
Diff to previous 1.15 (colored) next main 1.16 (colored) to selected 1.93.2.1 (colored)

sync with HEAD

Revision 1.14.6.2 / (download) - annotate - [select for diffs], Tue Oct 9 13:41:18 2007 UTC (16 years, 5 months ago) by ad
Branch: vmlocking
Changes since 1.14.6.1: +4 -3 lines
Diff to previous 1.14.6.1 (colored) to branchpoint 1.14 (colored) next main 1.15 (colored) to selected 1.93.2.1 (colored)

Sync with head.

Revision 1.14.18.1 / (download) - annotate - [select for diffs], Mon Sep 3 16:47:54 2007 UTC (16 years, 6 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.14: +9 -3 lines
Diff to previous 1.14 (colored) next main 1.15 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.3.18.3 / (download) - annotate - [select for diffs], Mon Sep 3 14:34:03 2007 UTC (16 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.18.2: +9 -3 lines
Diff to previous 1.3.18.2 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored) to selected 1.93.2.1 (colored)

sync with head.

Revision 1.14.14.1 / (download) - annotate - [select for diffs], Mon Sep 3 10:20:14 2007 UTC (16 years, 6 months ago) by skrll
Branch: nick-csl-alignment
Changes since 1.14: +9 -3 lines
Diff to previous 1.14 (colored) next main 1.15 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.16 / (download) - annotate - [select for diffs], Sun Sep 2 01:40:46 2007 UTC (16 years, 6 months ago) by macallan
Branch: MAIN
CVS Tags: yamt-x86pmap-base4, yamt-x86pmap-base3, yamt-x86pmap-base2, yamt-x86pmap-base, yamt-x86pmap, 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-1, wrstuden-revivesa-base, vmlocking2-base3, vmlocking2-base2, vmlocking2-base1, vmlocking2, vmlocking-nbase, vmlocking-base, simonb-wapbl-nbase, simonb-wapbl-base, simonb-wapbl, reinoud-bufcleanup-nbase, reinoud-bufcleanup-base, nick-net80211-sync-base, nick-net80211-sync, nick-csl-alignment-base5, mjf-devfs-base, mjf-devfs, matt-armv6-nbase, matt-armv6-base, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, jmcneill-pm-base, jmcneill-base, hpcarm-cleanup-nbase, hpcarm-cleanup-base, cube-autoconf-base, cube-autoconf, bouyer-xeni386-nbase, bouyer-xeni386-merge1, bouyer-xeni386-base, bouyer-xeni386, bouyer-xenamd64-base2, bouyer-xenamd64-base, bouyer-xenamd64, ad-socklock-base1
Branch point for: yamt-nfs-mp, wrstuden-revivesa, mjf-devfs2, haad-dm
Changes since 1.15: +4 -3 lines
Diff to previous 1.15 (colored) to selected 1.93.2.1 (colored)

defflag DEBUG_SGSMIX

Revision 1.14.6.1 / (download) - annotate - [select for diffs], Mon Aug 20 18:36:44 2007 UTC (16 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.14: +6 -1 lines
Diff to previous 1.14 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.15 / (download) - annotate - [select for diffs], Sat Aug 18 11:26:36 2007 UTC (16 years, 7 months ago) by tnn
Branch: MAIN
Branch point for: matt-armv6
Changes since 1.14: +6 -1 lines
Diff to previous 1.14 (colored) to selected 1.93.2.1 (colored)

Add spdmem(4) driver. This decodes technical specifications stored in
the eeprom on common types of memory modules. The specifications are
displayed during boot and can later be queried in the hw.spdmemN sysctl
subtree. Stub driver written by Nicolas Joly and greatly improved upon by
Paul Goyette. From PR 36745, with additional improvements by Paul and me.

Revision 1.3.18.2 / (download) - annotate - [select for diffs], Mon Feb 26 09:10:02 2007 UTC (17 years, 1 month ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3.18.1: +16 -1 lines
Diff to previous 1.3.18.1 (colored) to branchpoint 1.3 (colored) to selected 1.93.2.1 (colored)

sync with head.

Revision 1.10.8.2 / (download) - annotate - [select for diffs], Thu Feb 1 08:48:17 2007 UTC (17 years, 1 month ago) by ad
Branch: newlock2
Changes since 1.10.8.1: +6 -1 lines
Diff to previous 1.10.8.1 (colored) to branchpoint 1.10 (colored) next main 1.11 (colored) to selected 1.93.2.1 (colored)

Sync with head.

Revision 1.14 / (download) - annotate - [select for diffs], Wed Jan 17 23:33:23 2007 UTC (17 years, 2 months ago) by macallan
Branch: MAIN
CVS Tags: yamt-idlelwp-base8, yamt-idlelwp, thorpej-atomic-base, thorpej-atomic, reinoud-bufcleanup, post-newlock2-merge, nick-csl-alignment-base, newlock2-nbase, newlock2-base, mjf-ufs-trans-base, mjf-ufs-trans, matt-mips64-base, matt-mips64, hpcarm-cleanup, ad-audiomp-base, ad-audiomp
Branch point for: vmlocking, nick-csl-alignment, jmcneill-pm
Changes since 1.13: +6 -1 lines
Diff to previous 1.13 (colored) to selected 1.93.2.1 (colored)

add sgsmix

Revision 1.10.8.1 / (download) - annotate - [select for diffs], Fri Jan 12 00:57:35 2007 UTC (17 years, 2 months ago) by ad
Branch: newlock2
Changes since 1.10: +11 -1 lines
Diff to previous 1.10 (colored) to selected 1.93.2.1 (colored)

Sync with head.

Revision 1.13 / (download) - annotate - [select for diffs], Sat Jan 6 18:38:28 2007 UTC (17 years, 2 months ago) by jmcneill
Branch: MAIN
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (colored) to selected 1.93.2.1 (colored)

Provide external functions for setting the LED, rebooting, and powering off
the system.

Revision 1.12 / (download) - annotate - [select for diffs], Sat Jan 6 18:04:53 2007 UTC (17 years, 2 months ago) by jmcneill
Branch: MAIN
Changes since 1.11: +6 -1 lines
Diff to previous 1.11 (colored) to selected 1.93.2.1 (colored)

Microsoft Xbox serial EEPROM driver. Currently reports the system serial
number as sysctl machdep.xbox_serial.

Revision 1.11 / (download) - annotate - [select for diffs], Sat Jan 6 02:44:16 2007 UTC (17 years, 2 months ago) by jmcneill
Branch: MAIN
Changes since 1.10: +6 -1 lines
Diff to previous 1.10 (colored) to selected 1.93.2.1 (colored)

Driver for the Xbox System Management Controller. Currently reports CPU and
motherboard temperatures, but will eventually be extended to replace
arch/i386/xbox/pic16l.S

Revision 1.6.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:49:51 2006 UTC (17 years, 6 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.6: +18 -1 lines
Diff to previous 1.6 (colored) next main 1.7 (colored) to selected 1.93.2.1 (colored)

sync with head

Revision 1.3.18.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:02:51 2006 UTC (17 years, 9 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.3: +35 -1 lines
Diff to previous 1.3 (colored) to selected 1.93.2.1 (colored)

sync with head.

Revision 1.6.6.2 / (download) - annotate - [select for diffs], Thu Jun 1 22:36:20 2006 UTC (17 years, 10 months ago) by kardel
Branch: simonb-timecounters
CVS Tags: simonb-timcounters-final
Changes since 1.6.6.1: +7 -1 lines
Diff to previous 1.6.6.1 (colored) next main 1.7 (colored) to selected 1.93.2.1 (colored)

Sync with head.

Revision 1.8.4.1 / (download) - annotate - [select for diffs], Wed May 24 15:50:08 2006 UTC (17 years, 10 months ago) by tron
Branch: peter-altq
Changes since 1.8: +7 -1 lines
Diff to previous 1.8 (colored) next main 1.9 (colored) to selected 1.93.2.1 (colored)

Merge 2006-05-24 NetBSD-current into the "peter-altq" branch.

Revision 1.7.2.2 / (download) - annotate - [select for diffs], Wed May 24 10:57:40 2006 UTC (17 years, 10 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.7.2.1: +7 -1 lines
Diff to previous 1.7.2.1 (colored) to branchpoint 1.7 (colored) next main 1.8 (colored) to selected 1.93.2.1 (colored)

sync with head.

Revision 1.8.2.1 / (download) - annotate - [select for diffs], Thu May 11 23:28:30 2006 UTC (17 years, 10 months ago) by elad
Branch: elad-kernelauth
Changes since 1.8: +7 -1 lines
Diff to previous 1.8 (colored) next main 1.9 (colored) to selected 1.93.2.1 (colored)

sync with head

Revision 1.10 / (download) - annotate - [select for diffs], Wed Apr 26 06:52:09 2006 UTC (17 years, 11 months ago) by gdamore
Branch: MAIN
CVS Tags: 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-pdpolicy-base6, yamt-pdpolicy-base5, wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, simonb-timecounters-base, rpaulo-netinet-merge-pcb-base, 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, matt-nb4-arm-base, gdamore-uart-base, gdamore-uart, elad-kernelauth-base, chap-midi-nbase, chap-midi-base, chap-midi, abandoned-netbsd-4-base, abandoned-netbsd-4
Branch point for: newlock2, matt-nb4-arm
Changes since 1.9: +3 -2 lines
Diff to previous 1.9 (colored) to selected 1.93.2.1 (colored)

Oops! ddc.c was accidentally getting included in *all* kernel configs.
Added a new define so it can be included without doing the attach dance.

Revision 1.9 / (download) - annotate - [select for diffs], Tue Apr 25 21:18:16 2006 UTC (17 years, 11 months ago) by gdamore
Branch: MAIN
Changes since 1.8: +6 -1 lines
Diff to previous 1.8 (colored) to selected 1.93.2.1 (colored)

Add basic DDC (VESA Data Display Channel) driver for use by framebuffers.
Reviewed by jmcneill@ and macallan@.

Revision 1.6.6.1 / (download) - annotate - [select for diffs], Sat Apr 22 11:38:52 2006 UTC (17 years, 11 months ago) by simonb
Branch: simonb-timecounters
Changes since 1.6: +12 -1 lines
Diff to previous 1.6 (colored) to selected 1.93.2.1 (colored)

Sync with head.

Revision 1.7.2.1 / (download) - annotate - [select for diffs], Mon Mar 13 09:07:20 2006 UTC (18 years ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.7: +6 -1 lines
Diff to previous 1.7 (colored) to selected 1.93.2.1 (colored)

sync with head.

Revision 1.8 / (download) - annotate - [select for diffs], Mon Mar 6 20:29:06 2006 UTC (18 years ago) by shige
Branch: MAIN
CVS Tags: yamt-pdpolicy-base4, yamt-pdpolicy-base3, yamt-pdpolicy-base2, peter-altq-base
Branch point for: peter-altq, elad-kernelauth
Changes since 1.7: +6 -1 lines
Diff to previous 1.7 (colored) to selected 1.93.2.1 (colored)

Add r2025rtc.

Revision 1.6.2.1 / (download) - annotate - [select for diffs], Wed Mar 1 09:28:12 2006 UTC (18 years, 1 month ago) by yamt
Branch: yamt-uio_vmspace
Changes since 1.6: +7 -1 lines
Diff to previous 1.6 (colored) next main 1.7 (colored) to selected 1.93.2.1 (colored)

sync with head.

Revision 1.3.16.1 / (download) - annotate - [select for diffs], Mon Feb 20 23:00:27 2006 UTC (18 years, 1 month ago) by tron
Branch: netbsd-3
CVS Tags: 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
Changes since 1.3: +7 -1 lines
Diff to previous 1.3 (colored) next main 1.4 (colored) to selected 1.93.2.1 (colored)

Pull up following revision(s) (requested by tls in ticket #1179):
	sys/dev/pci/amdpm.c: revision 1.11
	sys/dev/i2c/files.i2c: revision 1.7
	sys/dev/i2c/adt7463.c: revision 1.1
	sys/dev/pci/files.pci: revision 1.242 via patch
	sys/dev/pci/amdpmvar.h: revision 1.1
	sys/dev/i2c/adt7463reg.h: revision 1.1
	sys/dev/DEVNAMES: revision 1.192 via patch
	sys/dev/pci/amdpm_smbus.c: revision 1.1
	sys/dev/pci/amdpm_smbusreg.h: revision 1.1
Add support for i2c bus on AMD-8111 used on many Opteron server motherboards,
and ADT 7463c thermal and voltage monitor found on the Tyan S2881 and S2882-D
(and probably other boards as well).  We do not currently support any kind
of detection of the i2c address of the thermal monitor; it appears to be
at 0x2D on the S2881 and 0x2E on the S2882-D (kernel config examples
forthcoming).
From PR kern/32463 submitted by Anil Gopinath, anil_public@yahoo.com.

Revision 1.7 / (download) - annotate - [select for diffs], Sun Feb 19 02:24:21 2006 UTC (18 years, 1 month ago) by tls
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5, yamt-pdpolicy-base
Branch point for: yamt-pdpolicy
Changes since 1.6: +7 -1 lines
Diff to previous 1.6 (colored) to selected 1.93.2.1 (colored)

Add support for i2c bus on AMD-8111 used on many Opteron server motherboards,
and ADT 7463c thermal and voltage monitor found on the Tyan S2881 and S2882-D
(and probably other boards as well).  We do not currently support any kind
of detection of the i2c address of the thermal monitor; it appears to be
at 0x2D on the S2881 and 0x2E on the S2882-D (kernel config examples
forthcoming).

From PR kern/32463 submitted by Anil Gopinath, anil_public@yahoo.com.

Revision 1.6 / (download) - annotate - [select for diffs], Sun Dec 11 12:21:22 2005 UTC (18 years, 3 months ago) by christos
Branch: MAIN
Branch point for: yamt-uio_vmspace, simonb-timecounters, rpaulo-netinet-merge-pcb
Changes since 1.5: +1 -1 lines
Diff to previous 1.5 (colored) to selected 1.93.2.1 (colored)

merge ktrace-lwp.

Revision 1.3.4.5 / (download) - annotate - [select for diffs], Thu Nov 10 14:04:00 2005 UTC (18 years, 4 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.3.4.4: +18 -1 lines
Diff to previous 1.3.4.4 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD. Here we go again...

Revision 1.5 / (download) - annotate - [select for diffs], Tue Aug 16 11:09:12 2005 UTC (18 years, 7 months ago) by nonaka
Branch: 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
Changes since 1.4: +6 -1 lines
Diff to previous 1.4 (colored) to selected 1.93.2.1 (colored)

Added RICOH RS5C372[AB] Real Time Clock.

Revision 1.4 / (download) - annotate - [select for diffs], Wed Aug 10 14:18:28 2005 UTC (18 years, 7 months ago) by macallan
Branch: MAIN
Changes since 1.3: +13 -1 lines
Diff to previous 1.3 (colored) to selected 1.93.2.1 (colored)

added drivers for Analog Devices ADT7467 and ADM1030 thermal monitor / fan controller chips found in various Apple laptops and probably other machines.

Revision 1.3.4.4 / (download) - annotate - [select for diffs], Tue Sep 21 13:27:46 2004 UTC (19 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.3.4.3: +1 -1 lines
Diff to previous 1.3.4.3 (colored) to branchpoint 1.3 (colored) to selected 1.93.2.1 (colored)

Fix the sync with head I botched.

Revision 1.3.4.3 / (download) - annotate - [select for diffs], Sat Sep 18 14:45:47 2004 UTC (19 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.3.4.2: +1 -1 lines
Diff to previous 1.3.4.2 (colored) to branchpoint 1.3 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD.

Revision 1.3.4.2 / (download) - annotate - [select for diffs], Tue Aug 3 10:46:05 2004 UTC (19 years, 7 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.3.4.1: +59 -0 lines
Diff to previous 1.3.4.1 (colored) to branchpoint 1.3 (colored) to selected 1.93.2.1 (colored)

Sync with HEAD

Revision 1.3.4.1, Mon Oct 20 16:24:10 2003 UTC (20 years, 5 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.3: +0 -59 lines
FILE REMOVED

file files.i2c was added on branch ktrace-lwp on 2004-08-03 10:46:05 +0000

Revision 1.3 / (download) - annotate - [select for diffs], Mon Oct 20 16:24:10 2003 UTC (20 years, 5 months ago) by briggs
Branch: MAIN
CVS Tags: yamt-km-base4, yamt-km-base3, yamt-km-base2, yamt-km-base, yamt-km, netbsd-3-base, 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-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: yamt-lazymbuf, netbsd-3, ktrace-lwp
Changes since 1.2: +4 -4 lines
Diff to previous 1.2 (colored) to selected 1.93.2.1 (colored)

As suggested by Jason Thorpe, rename m41t to m41trtc.

Revision 1.2 / (download) - annotate - [select for diffs], Mon Oct 6 18:02:54 2003 UTC (20 years, 5 months ago) by shige
Branch: MAIN
Changes since 1.1: +6 -1 lines
Diff to previous 1.1 (colored) to selected 1.93.2.1 (colored)

Add xrtc device for XICOR X1226 RTC.

Revision 1.1 / (download) - annotate - [select for diffs], Tue Sep 30 00:35:31 2003 UTC (20 years, 6 months ago) by thorpej
Branch: MAIN
Diff to selected 1.93.2.1 (colored)

New generic I2C framework.  Supports bit-bang and "intelligent" I2C
interface controllers (of varying intelligence levels).

Contributed by Wasabi Systems, Inc.  Primarily written by Steve Woodford,
with some modification by me.

This form allows you to request diff's 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.




CVSweb <webmaster@jp.NetBSD.org>