mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
276e552e08
Ralink architecture is making use of the header located in 'arch/mips/include/asm/mach-ralink/pinmux.h' to stablish the mechanisms to make derived SoCs to set its pin functions and groups. In order to move all architecture pinmux into a more accurate place which is 'drivers/pinctrl/ralink' we have to first of all move this file also there with a small modification which creates 'rt2880_pinmux_init' function to allow SoCs pinctrl drivers to pass its configuration to the common code located in 'pinctrl-rt2880.c' file. Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Link: https://lore.kernel.org/r/20210604115159.8834-2-sergio.paracuellos@gmail.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
68 lines
1.4 KiB
C
68 lines
1.4 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
*
|
|
* Copyright (C) 2009 Gabor Juhos <juhosg@openwrt.org>
|
|
* Copyright (C) 2010 Joonas Lahtinen <joonas.lahtinen@gmail.com>
|
|
* Copyright (C) 2013 John Crispin <john@phrozen.org>
|
|
*/
|
|
|
|
#include <linux/string.h>
|
|
#include <linux/of_fdt.h>
|
|
#include <linux/of_platform.h>
|
|
|
|
#include <asm/bootinfo.h>
|
|
#include <asm/addrspace.h>
|
|
|
|
#include <asm/mach-ralink/ralink_regs.h>
|
|
|
|
#include "common.h"
|
|
|
|
struct ralink_soc_info soc_info;
|
|
|
|
enum ralink_soc_type ralink_soc;
|
|
EXPORT_SYMBOL_GPL(ralink_soc);
|
|
|
|
const char *get_system_type(void)
|
|
{
|
|
return soc_info.sys_type;
|
|
}
|
|
|
|
static __init void prom_init_cmdline(void)
|
|
{
|
|
int argc;
|
|
char **argv;
|
|
int i;
|
|
|
|
pr_debug("prom: fw_arg0=%08x fw_arg1=%08x fw_arg2=%08x fw_arg3=%08x\n",
|
|
(unsigned int)fw_arg0, (unsigned int)fw_arg1,
|
|
(unsigned int)fw_arg2, (unsigned int)fw_arg3);
|
|
|
|
argc = fw_arg0;
|
|
argv = (char **) KSEG1ADDR(fw_arg1);
|
|
|
|
if (!argv) {
|
|
pr_debug("argv=%p is invalid, skipping\n",
|
|
argv);
|
|
return;
|
|
}
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
char *p = (char *) KSEG1ADDR(argv[i]);
|
|
|
|
if (CPHYSADDR(p) && *p) {
|
|
pr_debug("argv[%d]: %s\n", i, p);
|
|
strlcat(arcs_cmdline, " ", sizeof(arcs_cmdline));
|
|
strlcat(arcs_cmdline, p, sizeof(arcs_cmdline));
|
|
}
|
|
}
|
|
}
|
|
|
|
void __init prom_init(void)
|
|
{
|
|
prom_soc_init(&soc_info);
|
|
|
|
pr_info("SoC Type: %s\n", get_system_type());
|
|
|
|
prom_init_cmdline();
|
|
}
|