31 lines
677 B
C
31 lines
677 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <linux/start_kernel.h>
|
|
|
|
#include <asm/sw64_init.h>
|
|
|
|
void sw64_init_noop(void) { }
|
|
struct sw64_platform_ops *sw64_platform;
|
|
EXPORT_SYMBOL(sw64_platform);
|
|
struct sw64_chip_ops *sw64_chip;
|
|
struct sw64_chip_init_ops *sw64_chip_init;
|
|
|
|
static void __init sw64_setup_platform_ops(void)
|
|
{
|
|
/*
|
|
* FIXME: set platform operation depending on CONFIG now.
|
|
* SMBIOS will help use to determin actual board.
|
|
*/
|
|
#ifdef CONFIG_PLATFORM_XUELANG
|
|
sw64_platform = &xuelang_ops;
|
|
#endif
|
|
}
|
|
|
|
|
|
asmlinkage __visible void __init sw64_start_kernel(void)
|
|
{
|
|
sw64_setup_chip_ops();
|
|
sw64_setup_platform_ops();
|
|
sw64_platform->ops_fixup();
|
|
start_kernel();
|
|
}
|