mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
6a5e69c7dd
The Samsung S3C24xx and S3C64xx platforms are very old designs. S3C2416 was introduced in 2008 and S3C6410 in 2009/2010. They are not widely available anymore - out-of-stock on FriendlyArm (one of manufacturers of boards) and only few specialist stores still offer them for quite a high price. The community around these platforms was not very active, so I suspect no one really uses them anymore. Maintenance takes precious time so there is little sense in keeping them alive if there are no real users. Let's mark all S3C24xx and S3C64xx platforms as deprecated and mention possible removal in after 2022 for the first and 2024 for the lattere. The deprecation message will be as text in Kconfig, build message (not a warning though) and runtime print error. If there are any users, they might respond and postpone the removal. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Acked-by: Heiko Stuebner <heiko@sntech.de> Acked-by: Tomasz Figa <tomasz.figa@gmail.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/20220407072319.75614-1-krzysztof.kozlowski@linaro.org Signed-off-by: Arnd Bergmann <arnd@arndb.de>
33 lines
944 B
C
33 lines
944 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
//
|
|
// Copyright (c) 2009-2011 Samsung Electronics Co., Ltd.
|
|
// http://www.samsung.com
|
|
//
|
|
// Samsung CPU Support
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/init.h>
|
|
#include <linux/io.h>
|
|
|
|
#include "map-base.h"
|
|
#include "cpu.h"
|
|
|
|
unsigned long samsung_cpu_id;
|
|
|
|
void __init s3c64xx_init_cpu(void)
|
|
{
|
|
samsung_cpu_id = readl_relaxed(S3C_VA_SYS + 0x118);
|
|
if (!samsung_cpu_id) {
|
|
/*
|
|
* S3C6400 has the ID register in a different place,
|
|
* and needs a write before it can be read.
|
|
*/
|
|
writel_relaxed(0x0, S3C_VA_SYS + 0xA1C);
|
|
samsung_cpu_id = readl_relaxed(S3C_VA_SYS + 0xA1C);
|
|
}
|
|
|
|
pr_info("Samsung CPU ID: 0x%08lx\n", samsung_cpu_id);
|
|
pr_err("The platform is deprecated and scheduled for removal. Please reach to the maintainers of the platform and linux-samsung-soc@vger.kernel.org if you still use it. Without such feedback, the platform will be removed after 2022.\n");
|
|
}
|