Up to [cvs.NetBSD.org] / src / sys / arch / arm / rockchip
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.9 / (download) - annotate - [select for diffs], Fri Nov 12 22:02:08 2021 UTC (14 months, 3 weeks ago) by jmcneill
Branch: MAIN
CVS Tags: netbsd-10-base,
netbsd-10,
bouyer-sunxi-drm-base,
bouyer-sunxi-drm,
HEAD
Changes since 1.8: +3 -2
lines
Diff to previous 1.8 (colored)
arm: rockchip: Add support for RK3288 SoC. The Rockchip RK3288 is a quad core Cortex-A17 SoC.
Revision 1.7.4.1 / (download) - annotate - [select for diffs], Thu Jun 17 04:46:18 2021 UTC (19 months, 3 weeks ago) by thorpej
Branch: thorpej-i2c-spi-conf
Changes since 1.7: +19 -3
lines
Diff to previous 1.7 (colored) next main 1.8 (colored)
Sync w/ HEAD.
Revision 1.7.6.1 / (download) - annotate - [select for diffs], Mon May 31 22:15:11 2021 UTC (20 months, 1 week ago) by cjep
Branch: cjep_staticlib_x
Changes since 1.7: +19 -3
lines
Diff to previous 1.7 (colored) next main 1.8 (colored)
sync with head
Revision 1.8 / (download) - annotate - [select for diffs], Sat May 15 08:46:00 2021 UTC (20 months, 3 weeks ago) by mrg
Branch: MAIN
CVS Tags: thorpej-i2c-spi-conf2-base,
thorpej-i2c-spi-conf2,
thorpej-i2c-spi-conf-base,
thorpej-futex2-base,
thorpej-futex2,
thorpej-cfargs2-base,
thorpej-cfargs2,
cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1
Changes since 1.7: +19 -3
lines
Diff to previous 1.7 (colored)
add SPI support to rk3328, tested on rock64. simply adding the SPI clocks (and pwm while here) and enabling the config match was sufficient, though my first rock64 seems to have a deal SPI now (does not probe in u-boot or netbsd.)
Revision 1.5.10.2 / (download) - annotate - [select for diffs], Sat Apr 3 22:28:18 2021 UTC (22 months ago) by thorpej
Branch: thorpej-futex
Changes since 1.5.10.1: +6 -6
lines
Diff to previous 1.5.10.1 (colored) to branchpoint 1.5 (colored) next main 1.6 (colored)
Sync with HEAD.
Revision 1.7 / (download) - annotate - [select for diffs], Wed Jan 27 03:10:19 2021 UTC (2 years ago) by thorpej
Branch: MAIN
CVS Tags: thorpej-futex-base,
thorpej-cfargs-base,
thorpej-cfargs,
cjep_staticlib_x-base
Branch point for: thorpej-i2c-spi-conf,
cjep_staticlib_x
Changes since 1.6: +6 -6
lines
Diff to previous 1.6 (colored)
Rename of_match_compat_data() to of_compatible_match(). Similarly, rename of_search_compatible() to of_compatible_lookup(). Standardize on of_compatible_match() for driver matching, and adapt all call sites.
Revision 1.5.10.1 / (download) - annotate - [select for diffs], Sun Jan 3 16:34:52 2021 UTC (2 years, 1 month ago) by thorpej
Branch: thorpej-futex
Changes since 1.5: +76 -2
lines
Diff to previous 1.5 (colored)
Sync w/ HEAD.
Revision 1.6 / (download) - annotate - [select for diffs], Thu Dec 31 20:47:06 2020 UTC (2 years, 1 month ago) by mrg
Branch: MAIN
Changes since 1.5: +76 -2
lines
Diff to previous 1.5 (colored)
begin to make rock64 audio work. - set status for "analog_sound" to enabled. - add clocks for the i2s and spdif nodes. - match "rockchip,rk3066-i2s", "rockchip,rk3188-i2s", and "rockchip,rk3288-i2s". this gets i2s and ausoc to attach, but no audio(4) yet. to complete this probably also needs a codec driver (appears to be rk3328 specific, unlike eg pinebookpro's es8316), and support for "audio-graph-card" type sound cards.
Revision 1.2.4.1 / (download) - annotate - [select for diffs], Mon Jun 10 22:05:55 2019 UTC (3 years, 7 months ago) by christos
Branch: phil-wifi
Changes since 1.2: +54 -7
lines
Diff to previous 1.2 (colored) next main 1.3 (colored)
Sync with HEAD
Revision 1.5 / (download) - annotate - [select for diffs], Wed May 15 01:24:43 2019 UTC (3 years, 8 months ago) by mrg
Branch: MAIN
CVS Tags: phil-wifi-20200421,
phil-wifi-20200411,
phil-wifi-20200406,
phil-wifi-20191119,
phil-wifi-20190609,
netbsd-9-base,
netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE,
netbsd-9-1-RELEASE,
netbsd-9-0-RELEASE,
netbsd-9-0-RC2,
netbsd-9-0-RC1,
netbsd-9,
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
Branch point for: thorpej-futex
Changes since 1.4: +13 -2
lines
Diff to previous 1.4 (colored)
support RK3328 tsadc: - add clk_24m, clk_tsadc and pclk_tsadc rk3328 clocks - rk3328 data<->temp conversion table is is wrong. the actual values seen are 4096 - <expected>, and the linux driver has these values in the inverted value directly - the above means the rk3328 is increasing data for increasing temp, and the min/max values are also inverted and swapped - move auto-period into the rk_data - rk3328 only has one sensor, deal with this - rename rk_data_table as rk_data, and also s/rdt/rd/ thanks to jmcneill who helped clean up clocks confusion, and pointed out the linux driver values matched my own inverted data experience.
Revision 1.2.2.4 / (download) - annotate - [select for diffs], Thu Sep 6 06:55:27 2018 UTC (4 years, 5 months ago) by pgoyette
Branch: pgoyette-compat
CVS Tags: pgoyette-compat-merge-20190127
Changes since 1.2.2.3: +11 -7
lines
Diff to previous 1.2.2.3 (colored) to branchpoint 1.2 (colored) next main 1.3 (colored)
Sync with HEAD Resolve a couple of conflicts (result of the uimin/uimax changes)
Revision 1.4 / (download) - annotate - [select for diffs], Sun Aug 12 16:48:04 2018 UTC (4 years, 5 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,
isaki-audio2-base,
isaki-audio2
Changes since 1.3: +11 -7
lines
Diff to previous 1.3 (colored)
Add support for Rockchip RK3399 SoC.
Revision 1.2.2.3 / (download) - annotate - [select for diffs], Sat Jul 28 04:37:29 2018 UTC (4 years, 6 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.2.2.2: +34 -2
lines
Diff to previous 1.2.2.2 (colored) to branchpoint 1.2 (colored)
Sync with HEAD
Revision 1.3 / (download) - annotate - [select for diffs], Sun Jul 1 18:15:19 2018 UTC (4 years, 7 months ago) by jmcneill
Branch: MAIN
CVS Tags: pgoyette-compat-0728
Changes since 1.2: +34 -2
lines
Diff to previous 1.2 (colored)
Add i2c clocks.
Revision 1.2.2.2 / (download) - annotate - [select for diffs], Mon Jun 25 07:25:39 2018 UTC (4 years, 7 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.2.2.1: +376 -0
lines
Diff to previous 1.2.2.1 (colored) to branchpoint 1.2 (colored)
Sync with HEAD
Revision 1.2.2.1, Sat Jun 16 23:14:47 2018 UTC (4 years, 7 months ago) by pgoyette
Branch: pgoyette-compat
Changes since 1.2: +0 -376
lines
FILE REMOVED
file rk3328_cru.c was added on branch pgoyette-compat on 2018-06-25 07:25:39 +0000
Revision 1.2 / (download) - annotate - [select for diffs], Sat Jun 16 23:14:47 2018 UTC (4 years, 7 months ago) by jmcneill
Branch: MAIN
CVS Tags: phil-wifi-base,
pgoyette-compat-0625
Branch point for: phil-wifi,
pgoyette-compat
Changes since 1.1: +99 -84
lines
Diff to previous 1.1 (colored)
Replace register numbers with defines, fixing a bunch of typos in the process.
Revision 1.1 / (download) - annotate - [select for diffs], Sat Jun 16 00:19:04 2018 UTC (4 years, 7 months ago) by jmcneill
Branch: MAIN
Add initial support for Rockchip RK3328 SoC.