The NetBSD Project

CVS log for src/sys/arch/arm/rockchip/files.rockchip

[BACK] Up to [cvs.NetBSD.org] / src / sys / arch / arm / rockchip

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.29 / (download) - annotate - [select for diffs], Sat Nov 19 09:17:57 2022 UTC (16 months, 4 weeks ago) by yamt
Branch: MAIN
CVS Tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation, netbsd-10-base, netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, netbsd-10, HEAD
Changes since 1.28: +2 -2 lines
Diff to previous 1.28 (colored) to selected 1.4 (colored)

arm/rockchip: fix build w/o MULTIPROCESSOR

Revision 1.28 / (download) - annotate - [select for diffs], Tue Aug 23 05:40:46 2022 UTC (19 months, 3 weeks ago) by ryo
Branch: MAIN
CVS Tags: bouyer-sunxi-drm-base, bouyer-sunxi-drm
Changes since 1.27: +5 -1 lines
Diff to previous 1.27 (colored) to selected 1.4 (colored)

add eqos(4) for RK3588

Revision 1.27 / (download) - annotate - [select for diffs], Tue Aug 23 05:39:06 2022 UTC (19 months, 3 weeks ago) by ryo
Branch: MAIN
Changes since 1.26: +8 -1 lines
Diff to previous 1.26 (colored) to selected 1.4 (colored)

Add initial support for RK3588 SoC (CRU and IOMUX)

Revision 1.26 / (download) - annotate - [select for diffs], Wed Jul 20 10:01:11 2022 UTC (20 months, 4 weeks ago) by riastradh
Branch: MAIN
Changes since 1.25: +7 -2 lines
Diff to previous 1.25 (colored) to selected 1.4 (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.25 / (download) - annotate - [select for diffs], Fri Nov 12 22:02:08 2021 UTC (2 years, 5 months ago) by jmcneill
Branch: MAIN
Changes since 1.24: +30 -1 lines
Diff to previous 1.24 (colored) to selected 1.4 (colored)

arm: rockchip: Add support for RK3288 SoC.

The Rockchip RK3288 is a quad core Cortex-A17 SoC.

Revision 1.19.2.4 / (download) - annotate - [select for diffs], Mon May 18 18:54:30 2020 UTC (3 years, 11 months ago) by martin
Branch: netbsd-9
CVS Tags: netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE
Changes since 1.19.2.3: +6 -1 lines
Diff to previous 1.19.2.3 (colored) to branchpoint 1.19 (colored) next main 1.20 (colored) to selected 1.4 (colored)

Pull up following revision(s) (requested by riastradh in ticket #913):

	sys/arch/arm/dts/rk3399-crypto.dtsi: revision 1.1
	sys/arch/arm/rockchip/rk_v1crypto.c: revision 1.1
	sys/arch/arm/rockchip/rk_v1crypto.c: revision 1.2 (plus patch)
	sys/arch/arm/rockchip/rk_v1crypto.h: revision 1.1
	sys/arch/arm/dts/rk3399-pinebook-pro.dts: revision 1.3
	sys/arch/arm/rockchip/rk3399_cru.c: revision 1.20
	sys/arch/evbarm/conf/GENERIC64: revision 1.158
	sys/arch/arm/dts/rk3399-rockpro64.dts: revision 1.11
	sys/arch/arm/rockchip/files.rockchip: revision 1.24

Rockchip crypto engine RNG driver.

As found on the rk3288 and rk3399.  This driver only supports the
TRNG, not the rest of the crypto engine, although it uses the AES unit
to do a self-test at attach time to verify that the engine works.
There seem to be two versions of the Rockchip crypto engine, v1 and
v2; this one is for v1.  Can't name a driver `rkcryptov1' so we'll
clumsily call it `rkv1crypto' instead to leave room for `rkv2crypto'
later on.

The crypto binding derived from the Rockchip BSP Linux kernel, in the
location it appears on the rk3399, is in rk3399-crypto.dtsi, since
there doesn't seem to be a better place to put it at the moment among
this twisty maze of inclusions, all different.

Use rnd_add_data_sync from the callback.

(Doesn't make a difference in HEAD but this is the stated API
contract and it matters if we want to pull this up.)

Prime the pool on attach.

Revision 1.24 / (download) - annotate - [select for diffs], Sun May 17 19:57:25 2020 UTC (3 years, 11 months ago) by riastradh
Branch: MAIN
CVS Tags: thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, thorpej-i2c-spi-conf-base, thorpej-i2c-spi-conf, thorpej-futex2-base, thorpej-futex2, thorpej-futex-base, thorpej-futex, thorpej-cfargs2-base, thorpej-cfargs2, thorpej-cfargs-base, thorpej-cfargs, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Changes since 1.23: +6 -1 lines
Diff to previous 1.23 (colored) to selected 1.4 (colored)

Rockchip crypto engine RNG driver.

As found on the rk3288 and rk3399.  This driver only supports the
TRNG, not the rest of the crypto engine, although it uses the AES unit
to do a self-test at attach time to verify that the engine works.

There seem to be two versions of the Rockchip crypto engine, v1 and
v2; this one is for v1.  Can't name a driver `rkcryptov1' so we'll
clumsily call it `rkv1crypto' instead to leave room for `rkv2crypto'
later on.

The crypto binding derived from the Rockchip BSP Linux kernel, in the
location it appears on the rk3399, is in rk3399-crypto.dtsi, since
there doesn't seem to be a better place to put it at the moment among
this twisty maze of inclusions, all different.

Revision 1.13.2.2 / (download) - annotate - [select for diffs], Mon Apr 13 08:03:37 2020 UTC (4 years ago) by martin
Branch: phil-wifi
Changes since 1.13.2.1: +35 -1 lines
Diff to previous 1.13.2.1 (colored) to branchpoint 1.13 (colored) next main 1.14 (colored) to selected 1.4 (colored)

Mostly merge changes from HEAD upto 20200411

Revision 1.19.2.3 / (download) - annotate - [select for diffs], Tue Jan 21 10:39:59 2020 UTC (4 years, 2 months ago) by martin
Branch: netbsd-9
CVS Tags: netbsd-9-0-RELEASE, netbsd-9-0-RC2
Changes since 1.19.2.2: +5 -1 lines
Diff to previous 1.19.2.2 (colored) to branchpoint 1.19 (colored) to selected 1.4 (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.23 / (download) - annotate - [select for diffs], Thu Dec 19 00:25:58 2019 UTC (4 years, 4 months ago) by jakllsch
Branch: MAIN
CVS Tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, is-mlppp-base, is-mlppp, bouyer-xenpvh-base2, bouyer-xenpvh-base1, bouyer-xenpvh-base, bouyer-xenpvh, ad-namecache-base3, ad-namecache-base2, ad-namecache-base1, ad-namecache-base, ad-namecache
Changes since 1.22: +5 -1 lines
Diff to previous 1.22 (colored) to selected 1.4 (colored)

add Rockchip (RK3399) glue for Analogix DisplayPort core

Revision 1.19.2.2 / (download) - annotate - [select for diffs], Wed Nov 20 16:49:58 2019 UTC (4 years, 4 months ago) by martin
Branch: netbsd-9
CVS Tags: netbsd-9-0-RC1
Changes since 1.19.2.1: +6 -1 lines
Diff to previous 1.19.2.1 (colored) to branchpoint 1.19 (colored) to selected 1.4 (colored)

Pull up following revision(s) (requested by tnn in ticket #458):

	sys/arch/arm/rockchip/rk3399_cru.c: revision 1.9
	sys/arch/arm/rockchip/rk_spi.c: revision 1.1
	sys/arch/evbarm/conf/GENERIC64: revision 1.104
	sys/arch/arm/rockchip/files.rockchip: revision 1.20

rk3399_cru: add definitions for SPI clocks

rk_spi: Rockchip SPI driver

Match only on RK3399 for now, but should work on RK3328 as well with
the proper CRU support. If you can, please test and enable for RK3328.

rkspi* at fdt?

Revision 1.19.2.1 / (download) - annotate - [select for diffs], Sat Nov 16 16:48:25 2019 UTC (4 years, 5 months ago) by martin
Branch: netbsd-9
Changes since 1.19: +26 -1 lines
Diff to previous 1.19 (colored) to selected 1.4 (colored)

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

	sys/dev/ic/dw_hdmi_phy.c: revision 1.2
	sys/dev/ic/dw_hdmi.c: revision 1.4
	sys/dev/fdt/ausoc.c: revision 1.5
	sys/dev/ic/dw_hdmi.h: revision 1.2
	sys/dev/ic/dw_hdmi.h: revision 1.3
	sys/dev/ic/dw_hdmi.h: revision 1.4
	sys/conf/files: revision 1.1242
	sys/dev/fdt/fdtvar.h: revision 1.57
	sys/arch/arm/rockchip/rk3399_cru.c: revision 1.11
	sys/arch/arm/rockchip/rk3399_cru.c: revision 1.12
	sys/arch/arm/rockchip/rk3399_cru.c: revision 1.13
	sys/arch/evbarm/conf/GENERIC64: revision 1.110
	sys/arch/arm/rockchip/rk_drm.c: revision 1.1
	sys/arch/arm/rockchip/rk_drm.c: revision 1.2
	sys/arch/evbarm/conf/GENERIC64: revision 1.112
	sys/arch/arm/rockchip/rk_dwhdmi.c: revision 1.1
	sys/dev/fdt/fdt_clock.c: revision 1.10
	sys/arch/evbarm/conf/GENERIC64: revision 1.113
	sys/arch/arm/rockchip/rk_dwhdmi.c: revision 1.2
	sys/arch/arm/rockchip/rk_drm.h: revision 1.1
	sys/arch/arm/rockchip/rk_dwhdmi.c: revision 1.3
	sys/arch/arm/rockchip/rk_fb.c: revision 1.1
	sys/arch/arm/dts/rk3399-rockpro64.dts: revision 1.9
	sys/arch/arm/rockchip/rk_vop.c: revision 1.1
	sys/arch/arm/rockchip/rk_vop.c: revision 1.2
	sys/arch/arm/rockchip/rk_i2c.c: revision 1.6
	sys/arch/arm/rockchip/rk_cru.h: revision 1.6
	sys/arch/arm/rockchip/rk_cru.h: revision 1.7
	sys/arch/arm/rockchip/rk_cru_composite.c: revision 1.4
	sys/arch/arm/rockchip/rk_cru_composite.c: revision 1.5
	sys/arch/arm/rockchip/files.rockchip: revision 1.21
	sys/arch/arm/rockchip/rk_i2s.c: revision 1.1
	sys/arch/arm/rockchip/files.rockchip: revision 1.22
	sys/dev/ic/dw_hdmi.c: revision 1.2
	sys/dev/ic/dw_hdmi_phy.c: revision 1.1
	sys/dev/ic/dw_hdmi.c: revision 1.3

Support reads of more than 32 bytes in a single xfer.

Add support for internal DesignWare HDMI PHYs

Add fdtbus_clock_enable and fdtbus_clock_enable_index shortcuts

Add HDMI and VOP clocks

WIP display driver for Rockchip RK3399

Add (commented out) Rockchip display support

Select the correct MPLL and PHY settings for the requested pixel clock
Force DCLK_VOP0/1 dividers to 1 and select closest match when setting PLL
rates.

Fix typo in phy config table

Fix a few swapped fields

Remove debug output

Enable Rockchip display support

Set sysclk rate at set_format time, so the link set_format callback can read the new sysclk

Add I2S audio input support.
Add software volume controls.
Add support for I2S clocks.
Add driver for Rockchip I2S/PCM controller.
Enable HDMI audio on ROCKPro64
Add rki2s
Add audio support

Revision 1.22 / (download) - annotate - [select for diffs], Sat Nov 16 13:24:03 2019 UTC (4 years, 5 months ago) by jmcneill
Branch: MAIN
CVS Tags: phil-wifi-20191119
Changes since 1.21: +6 -1 lines
Diff to previous 1.21 (colored) to selected 1.4 (colored)

Add driver for Rockchip I2S/PCM controller.

Revision 1.21 / (download) - annotate - [select for diffs], Sat Nov 9 23:30:14 2019 UTC (4 years, 5 months ago) by jmcneill
Branch: MAIN
Changes since 1.20: +21 -1 lines
Diff to previous 1.20 (colored) to selected 1.4 (colored)

WIP display driver for Rockchip RK3399

Revision 1.20 / (download) - annotate - [select for diffs], Mon Aug 5 15:22:59 2019 UTC (4 years, 8 months ago) by tnn
Branch: MAIN
Changes since 1.19: +6 -1 lines
Diff to previous 1.19 (colored) to selected 1.4 (colored)

rk_spi: Rockchip SPI driver

Match only on RK3399 for now, but should work on RK3328 as well with
the proper CRU support. If you can, please test and enable for RK3328.

Revision 1.13.2.1 / (download) - annotate - [select for diffs], Mon Jun 10 22:05:55 2019 UTC (4 years, 10 months ago) by christos
Branch: phil-wifi
Changes since 1.13: +42 -3 lines
Diff to previous 1.13 (colored) to selected 1.4 (colored)

Sync with HEAD

Revision 1.19 / (download) - annotate - [select for diffs], Wed May 1 10:41:33 2019 UTC (4 years, 11 months ago) by jmcneill
Branch: MAIN
CVS Tags: phil-wifi-20190609, netbsd-9-base
Branch point for: netbsd-9
Changes since 1.18: +6 -1 lines
Diff to previous 1.18 (colored) to selected 1.4 (colored)

Add support for RK3399 PWM controller.

Revision 1.18 / (download) - annotate - [select for diffs], Fri Apr 26 08:28:11 2019 UTC (4 years, 11 months ago) by mrg
Branch: MAIN
Changes since 1.17: +6 -1 lines
Diff to previous 1.17 (colored) to selected 1.4 (colored)

implement TSADC driver for rockchip RK3328 and RK3399.  so far, only
tested on RK3399 but the RK3328 looks mostly the same and has a good
chance of working too.

add clock entries for "clk_tsadc" and "pclk_tsadc" to cru.

exports "CPU" and "GPU" temp sensors.  these currently limited to 5
degC resolution but can be reduced to sub 1 degC resolution with some
interpolation.

todo list:

- handle setting various temp values
- add interpolation between the 5degC intervals in sample data
- handle DT trips/temp value defaults
- interrupts aren't triggered (test by lowering warn/crit values),
  and once they work, make the interrupt do something
- test on RK3328, and port to other rockchips (will require moving
  some part into per-chipset sections, such as code<->temp tables)


thanks to jmcneill for help.

Revision 1.17 / (download) - annotate - [select for diffs], Sun Mar 10 11:10:21 2019 UTC (5 years, 1 month ago) by jmcneill
Branch: MAIN
CVS Tags: isaki-audio2-base, isaki-audio2
Changes since 1.16: +6 -1 lines
Diff to previous 1.16 (colored) to selected 1.4 (colored)

Add support for Rockchip eMMC PHY

Revision 1.16 / (download) - annotate - [select for diffs], Thu Mar 7 00:35:22 2019 UTC (5 years, 1 month ago) by jakllsch
Branch: MAIN
Changes since 1.15: +11 -1 lines
Diff to previous 1.15 (colored) to selected 1.4 (colored)

Add RK3399 PCIe host bridge support.

Not enabled yet due to occasional hangs during boot, and needing
__BUS_SPACE_HAS_PROBING_METHODS enabled.

Uses slightly non-standard DT bindings to avoid suboptimality of the
Linux binding.   This allows for much more flexibility and efficency
in allotment of the limited apertures into PCI spaces.

Revision 1.12.2.3 / (download) - annotate - [select for diffs], Thu Sep 6 06:55:27 2018 UTC (5 years, 7 months ago) by pgoyette
Branch: pgoyette-compat
CVS Tags: pgoyette-compat-merge-20190127
Changes since 1.12.2.2: +12 -3 lines
Diff to previous 1.12.2.2 (colored) to branchpoint 1.12 (colored) next main 1.13 (colored) to selected 1.4 (colored)

Sync with HEAD

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

Revision 1.15 / (download) - annotate - [select for diffs], Sun Aug 12 16:48:04 2018 UTC (5 years, 8 months ago) by jmcneill
Branch: MAIN
CVS Tags: pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906
Changes since 1.14: +12 -3 lines
Diff to previous 1.14 (colored) to selected 1.4 (colored)

Add support for Rockchip RK3399 SoC.

Revision 1.12.2.2 / (download) - annotate - [select for diffs], Sat Jul 28 04:37:29 2018 UTC (5 years, 8 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.12.2.1: +6 -1 lines
Diff to previous 1.12.2.1 (colored) to branchpoint 1.12 (colored) to selected 1.4 (colored)

Sync with HEAD

Revision 1.14 / (download) - annotate - [select for diffs], Sun Jul 1 18:16:58 2018 UTC (5 years, 9 months ago) by jmcneill
Branch: MAIN
CVS Tags: pgoyette-compat-0728
Changes since 1.13: +6 -1 lines
Diff to previous 1.13 (colored) to selected 1.4 (colored)

Add driver for Rockchip I2C controller.

Revision 1.12.2.1 / (download) - annotate - [select for diffs], Mon Jun 25 07:25:39 2018 UTC (5 years, 9 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.12: +41 -63 lines
Diff to previous 1.12 (colored) to selected 1.4 (colored)

Sync with HEAD

Revision 1.13 / (download) - annotate - [select for diffs], Sat Jun 16 00:19:04 2018 UTC (5 years, 10 months ago) by jmcneill
Branch: MAIN
CVS Tags: phil-wifi-base, pgoyette-compat-0625
Branch point for: phil-wifi
Changes since 1.12: +41 -63 lines
Diff to previous 1.12 (colored) to selected 1.4 (colored)

Add initial support for Rockchip RK3328 SoC.

Revision 1.12, Thu Feb 8 00:10:26 2018 UTC (6 years, 2 months ago) by jmcneill
Branch: MAIN
CVS Tags: pgoyette-compat-base, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315
Branch point for: pgoyette-compat
Changes since 1.11: +1 -1 lines
FILE REMOVED

Move Rockchip port to the attic. It is not very useful.

Revision 1.11.18.2 / (download) - annotate - [select for diffs], Sun Dec 3 11:35:55 2017 UTC (6 years, 4 months ago) by jdolecek
Branch: tls-maxphys
Changes since 1.11.18.1: +67 -0 lines
Diff to previous 1.11.18.1 (colored) to branchpoint 1.11 (colored) next main 1.12 (colored) to selected 1.4 (colored)

update from HEAD

Revision 1.11.2.2 / (download) - annotate - [select for diffs], Mon Apr 6 15:17:53 2015 UTC (9 years ago) by skrll
Branch: nick-nhusb
Changes since 1.11.2.1: +67 -0 lines
Diff to previous 1.11.2.1 (colored) to branchpoint 1.11 (colored) next main 1.12 (colored) to selected 1.4 (colored)

Sync with HEAD

Revision 1.11.18.1, Sun Mar 29 22:56:23 2015 UTC (9 years ago) by jdolecek
Branch: tls-maxphys
Changes since 1.11: +0 -67 lines
FILE REMOVED

file files.rockchip was added on branch tls-maxphys on 2017-12-03 11:35:55 +0000

Revision 1.11.2.1, Sun Mar 29 22:56:23 2015 UTC (9 years ago) by skrll
Branch: nick-nhusb
Changes since 1.11: +0 -67 lines
FILE REMOVED

file files.rockchip was added on branch nick-nhusb on 2015-04-06 15:17:53 +0000

Revision 1.11 / (download) - annotate - [select for diffs], Sun Mar 29 22:56:23 2015 UTC (9 years ago) by jmcneill
Branch: MAIN
CVS Tags: tls-maxphys-base-20171202, prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, perseant-stdc-iso10646-base, perseant-stdc-iso10646, nick-nhusb-base-20170825, nick-nhusb-base-20170204, nick-nhusb-base-20161204, nick-nhusb-base-20161004, nick-nhusb-base-20160907, nick-nhusb-base-20160529, nick-nhusb-base-20160422, nick-nhusb-base-20160319, nick-nhusb-base-20151226, nick-nhusb-base-20150921, nick-nhusb-base-20150606, nick-nhusb-base-20150406, netbsd-8-base, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, matt-nb8-mediatek-base, matt-nb8-mediatek, localcount-20160914, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Branch point for: tls-maxphys, nick-nhusb
Changes since 1.10: +3 -4 lines
Diff to previous 1.10 (colored) to selected 1.4 (colored)

Use shared armv7_generic_space

Revision 1.10 / (download) - annotate - [select for diffs], Sat Jan 17 15:05:24 2015 UTC (9 years, 3 months ago) by jmcneill
Branch: MAIN
Changes since 1.9: +6 -2 lines
Diff to previous 1.9 (colored) to selected 1.4 (colored)

Add Rockchip PX2 support, from FUKAUMI Naoki <fun@naobsd.org>

Revision 1.9 / (download) - annotate - [select for diffs], Sun Jan 4 03:53:02 2015 UTC (9 years, 3 months ago) by jmcneill
Branch: MAIN
Changes since 1.8: +7 -1 lines
Diff to previous 1.8 (colored) to selected 1.4 (colored)

Add Rockchip ethernet driver, untested.

Revision 1.8 / (download) - annotate - [select for diffs], Sat Jan 3 13:26:31 2015 UTC (9 years, 3 months ago) by jmcneill
Branch: MAIN
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (colored) to selected 1.4 (colored)

attach devices marked "crit 1" first

Revision 1.7 / (download) - annotate - [select for diffs], Fri Jan 2 23:20:18 2015 UTC (9 years, 3 months ago) by jmcneill
Branch: MAIN
Changes since 1.6: +6 -1 lines
Diff to previous 1.6 (colored) to selected 1.4 (colored)

Add driver for RK3188 64-bit timer.

Revision 1.6 / (download) - annotate - [select for diffs], Fri Jan 2 21:59:29 2015 UTC (9 years, 3 months ago) by jmcneill
Branch: MAIN
Changes since 1.5: +2 -1 lines
Diff to previous 1.5 (colored) to selected 1.4 (colored)

Add RK3188/RK3188+ CPU frequency setting support.

Revision 1.5 / (download) - annotate - [select for diffs], Tue Dec 30 18:57:36 2014 UTC (9 years, 3 months ago) by jmcneill
Branch: MAIN
Changes since 1.4: +2 -1 lines
Diff to previous 1.4 (colored)

Actually set slave addr / reg. Wait for start irq after sending start before
transferring data. Add RKIIC_DEBUG kernel option.

Revision 1.4 / (download) - annotate - [selected], Tue Dec 30 17:15:31 2014 UTC (9 years, 3 months ago) by jmcneill
Branch: MAIN
Changes since 1.3: +7 -2 lines
Diff to previous 1.3 (colored)

add I2C driver

Revision 1.3 / (download) - annotate - [select for diffs], Sat Dec 27 16:18:50 2014 UTC (9 years, 3 months ago) by jmcneill
Branch: MAIN
Changes since 1.2: +4 -1 lines
Diff to previous 1.2 (colored) to selected 1.4 (colored)

More clock fixes, debugging.

Revision 1.2 / (download) - annotate - [select for diffs], Fri Dec 26 19:44:48 2014 UTC (9 years, 3 months ago) by jmcneill
Branch: MAIN
Changes since 1.1: +6 -5 lines
Diff to previous 1.1 (colored) to selected 1.4 (colored)

Map all of core0 and core1 space and let drivers use bus_space_subregion
instead of bus_space_map. Fill in rockchip_reset.

Revision 1.1 / (download) - annotate - [select for diffs], Fri Dec 26 16:53:33 2014 UTC (9 years, 3 months ago) by jmcneill
Branch: MAIN
Diff to selected 1.4 (colored)

Initial support for Rockchip RK3066 / RK3188 SoCs, from Hiroshi Tokuda
<tokuda@tokuda.net> on port-arm:

http://mail-index.netbsd.org/port-arm/2014/10/09/msg002651.html

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>