mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Most probe functions that do not use the 'compatible' string do nothing else than checking whether the machine is compatible with one of the strings in a NULL terminated table of strings. Define that table of strings in ppc_md structure and check it directly from probe_machine() instead of using ppc_md.probe() for that. Keep checking in ppc_md.probe() only for more complex probing. All .compatible could be replaced with a single element NULL terminated list but that's not worth the churn. Can be do incrementaly in follow-up patches. Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20231214103152.12269-4-mpe@ellerman.id.au
49 lines
938 B
C
49 lines
938 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (C) 2007,2008 Freescale Semiconductor, Inc. All rights reserved.
|
|
*
|
|
* Author: John Rigby, <jrigby@freescale.com>
|
|
*
|
|
* Description:
|
|
* MPC512x SoC setup
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/of.h>
|
|
|
|
#include <asm/machdep.h>
|
|
#include <asm/ipic.h>
|
|
#include <asm/time.h>
|
|
|
|
#include "mpc512x.h"
|
|
|
|
/*
|
|
* list of supported boards
|
|
*/
|
|
static const char * const board[] __initconst = {
|
|
"prt,prtlvt",
|
|
"fsl,mpc5125ads",
|
|
"ifm,ac14xx",
|
|
NULL
|
|
};
|
|
|
|
/*
|
|
* Called very early, MMU is off, device-tree isn't unflattened
|
|
*/
|
|
static int __init mpc512x_generic_probe(void)
|
|
{
|
|
mpc512x_init_early();
|
|
|
|
return 1;
|
|
}
|
|
|
|
define_machine(mpc512x_generic) {
|
|
.name = "MPC512x generic",
|
|
.compatibles = board,
|
|
.probe = mpc512x_generic_probe,
|
|
.init = mpc512x_init,
|
|
.setup_arch = mpc512x_setup_arch,
|
|
.init_IRQ = mpc512x_init_IRQ,
|
|
.get_irq = ipic_get_irq,
|
|
.restart = mpc512x_restart,
|
|
};
|