Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/powerpc/platforms/83xx/mpc830x_rdb.c
26481 views
1
// SPDX-License-Identifier: GPL-2.0-or-later
2
/*
3
* arch/powerpc/platforms/83xx/mpc830x_rdb.c
4
*
5
* Description: MPC830x RDB board specific routines.
6
* This file is based on mpc831x_rdb.c
7
*
8
* Copyright (C) Freescale Semiconductor, Inc. 2009. All rights reserved.
9
* Copyright (C) 2010. Ilya Yanok, Emcraft Systems, [email protected]
10
*/
11
12
#include <linux/pci.h>
13
#include <linux/of_platform.h>
14
#include <asm/time.h>
15
#include <asm/ipic.h>
16
#include <asm/udbg.h>
17
#include <sysdev/fsl_pci.h>
18
#include <sysdev/fsl_soc.h>
19
#include "mpc83xx.h"
20
21
/*
22
* Setup the architecture
23
*/
24
static void __init mpc830x_rdb_setup_arch(void)
25
{
26
mpc83xx_setup_arch();
27
mpc831x_usb_cfg();
28
}
29
30
static const char *board[] __initdata = {
31
"MPC8308RDB",
32
"fsl,mpc8308rdb",
33
"denx,mpc8308_p1m",
34
NULL
35
};
36
37
machine_device_initcall(mpc830x_rdb, mpc83xx_declare_of_platform_devices);
38
39
define_machine(mpc830x_rdb) {
40
.name = "MPC830x RDB",
41
.compatibles = board,
42
.setup_arch = mpc830x_rdb_setup_arch,
43
.discover_phbs = mpc83xx_setup_pci,
44
.init_IRQ = mpc83xx_ipic_init_IRQ,
45
.get_irq = ipic_get_irq,
46
.restart = mpc83xx_restart,
47
.time_init = mpc83xx_time_init,
48
.progress = udbg_progress,
49
};
50
51