mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
6bb27d7349
Now that the only field in struct sys_timer is .init, delete the struct, and replace the machine descriptor .timer field with the initialization function itself. This will enable moving timer drivers into drivers/clocksource without having to place a public prototype of each struct sys_timer object into include/linux; the intent is to create a single of_clocksource_init() function that determines which timer driver to initialize by scanning the device dtree, much like the proposed irqchip_init() at: http://www.spinics.net/lists/arm-kernel/msg203686.html Includes mach-omap2 fixes from Igor Grinberg. Tested-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Stephen Warren <swarren@nvidia.com>
51 lines
1.1 KiB
C
51 lines
1.1 KiB
C
/*
|
|
* Defines machines for CSR SiRFprimaII
|
|
*
|
|
* Copyright (c) 2011 Cambridge Silicon Radio Limited, a CSR plc group company.
|
|
*
|
|
* Licensed under GPLv2 or later.
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/kernel.h>
|
|
#include <asm/sizes.h>
|
|
#include <asm/mach-types.h>
|
|
#include <asm/mach/arch.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_platform.h>
|
|
#include "common.h"
|
|
|
|
static struct of_device_id sirfsoc_of_bus_ids[] __initdata = {
|
|
{ .compatible = "simple-bus", },
|
|
{},
|
|
};
|
|
|
|
void __init sirfsoc_mach_init(void)
|
|
{
|
|
of_platform_bus_probe(NULL, sirfsoc_of_bus_ids, NULL);
|
|
}
|
|
|
|
void __init sirfsoc_init_late(void)
|
|
{
|
|
sirfsoc_pm_init();
|
|
}
|
|
|
|
#ifdef CONFIG_ARCH_PRIMA2
|
|
static const char *prima2_dt_match[] __initdata = {
|
|
"sirf,prima2",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(PRIMA2_DT, "Generic PRIMA2 (Flattened Device Tree)")
|
|
/* Maintainer: Barry Song <baohua.song@csr.com> */
|
|
.map_io = sirfsoc_map_lluart,
|
|
.init_irq = sirfsoc_of_irq_init,
|
|
.init_time = sirfsoc_timer_init,
|
|
.dma_zone_size = SZ_256M,
|
|
.init_machine = sirfsoc_mach_init,
|
|
.init_late = sirfsoc_init_late,
|
|
.dt_compat = prima2_dt_match,
|
|
.restart = sirfsoc_restart,
|
|
MACHINE_END
|
|
#endif
|