1
0
Fork 0
alistair23-linux/drivers/soc
Arnaud Patard 044d71bc6c meson-gx-socinfo: Fix package id parsing
I've noticed the following message while booting a S905X based board:

soc soc0: Amlogic Meson GXL (S905D) Revision 21:82 (b:2) Detected

The S905D string is obviously wrong. The vendor code does:
...
        ver = (readl(assist_hw_rev) >> 8) & 0xff;
        meson_cpu_version[MESON_CPU_VERSION_LVL_MINOR] = ver;
        ver =  (readl(assist_hw_rev) >> 16) & 0xff;
        meson_cpu_version[MESON_CPU_VERSION_LVL_PACK] = ver;
...

while the current code does:
...
...

This means that the current mainline code has package id and minor
version reversed.

Fixes: a9daaba296 ("soc: Add Amlogic SoC Information driver")
Signed-off-by: Arnaud Patard <apatard@hupstream.com>
Acked-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
2017-11-30 15:29:44 -08:00
..
actions soc: actions: owl-sps: Factor out owl_sps_set_pg() for power-gating 2017-06-23 17:43:27 +02:00
amlogic meson-gx-socinfo: Fix package id parsing 2017-11-30 15:29:44 -08:00
atmel drivers: soc: atmel: Add basic support for new sama5d2 SiPs 2017-09-17 19:45:59 +02:00
bcm ARM: SoC driver updates for v4.15 2017-11-16 16:05:01 -08:00
dove License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
fsl ARM: SoC driver updates for v4.15 2017-11-16 16:05:01 -08:00
imx soc: imx: gpcv2: fix regulator deferred probe 2017-08-05 11:12:20 +08:00
lantiq MIPS: lantiq: Add a GPHY driver which uses the RCU syscon-mfd 2017-09-04 21:19:02 +02:00
mediatek ARM: SoC driver updates for v4.15 2017-11-16 16:05:01 -08:00
qcom ARM: SoC driver updates for v4.15 2017-11-16 16:05:01 -08:00
renesas ARM: SoC driver updates for v4.15 2017-11-16 16:05:01 -08:00
rockchip soc: rockchip: power-domain: Use GENPD_FLAG_ACTIVE_WAKEUP 2017-11-08 01:00:47 +01:00
samsung soc: samsung: Remove Exynos4212 related dead code 2017-10-08 14:17:13 +02:00
sunxi drivers: soc: sunxi: add support for A64 and its SRAM C 2017-08-18 14:30:21 +08:00
tegra ARM: SoC driver updates for v4.15 2017-11-16 16:05:01 -08:00
ti License cleanup: add SPDX GPL-2.0 license identifier to files with no license 2017-11-02 11:10:55 +01:00
ux500 ARM: ux500: move soc_id driver to drivers/soc 2016-07-12 11:24:09 +02:00
versatile soc: versatile: remove unnecessary static in realview_soc_probe() 2017-08-16 22:28:27 +02:00
zte soc: zte: Restrict SOC_ZTE to ARCH_ZX or COMPILE_TEST 2017-07-27 13:12:34 +02:00
Kconfig soc: Add Amlogic SoC Information driver 2017-07-28 09:25:07 -07:00
Makefile ARM: SoC driver updates for v4.15 2017-11-16 16:05:01 -08:00