aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc/syslib/ppc83xx_setup.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/ppc/syslib/ppc83xx_setup.h
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'arch/ppc/syslib/ppc83xx_setup.h')
-rw-r--r--arch/ppc/syslib/ppc83xx_setup.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/arch/ppc/syslib/ppc83xx_setup.h b/arch/ppc/syslib/ppc83xx_setup.h
new file mode 100644
index 000000000000..683f179b746c
--- /dev/null
+++ b/arch/ppc/syslib/ppc83xx_setup.h
@@ -0,0 +1,53 @@
1/*
2 * arch/ppc/syslib/ppc83xx_setup.h
3 *
4 * MPC83XX common board definitions
5 *
6 * Maintainer: Kumar Gala <kumar.gala@freescale.com>
7 *
8 * Copyright 2005 Freescale Semiconductor Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
14 *
15 */
16
17#ifndef __PPC_SYSLIB_PPC83XX_SETUP_H
18#define __PPC_SYSLIB_PPC83XX_SETUP_H
19
20#include <linux/config.h>
21#include <linux/init.h>
22#include <asm/ppcboot.h>
23
24extern unsigned long mpc83xx_find_end_of_memory(void) __init;
25extern long mpc83xx_time_init(void) __init;
26extern void mpc83xx_calibrate_decr(void) __init;
27extern void mpc83xx_early_serial_map(void) __init;
28extern void mpc83xx_restart(char *cmd);
29extern void mpc83xx_power_off(void);
30extern void mpc83xx_halt(void);
31extern void mpc83xx_setup_hose(void) __init;
32
33/* PCI config */
34#if 0
35#define PCI1_CFG_ADDR_OFFSET (FIXME)
36#define PCI1_CFG_DATA_OFFSET (FIXME)
37
38#define PCI2_CFG_ADDR_OFFSET (FIXME)
39#define PCI2_CFG_DATA_OFFSET (FIXME)
40#endif
41
42/* Serial Config */
43#ifdef CONFIG_SERIAL_MANY_PORTS
44#define RS_TABLE_SIZE 64
45#else
46#define RS_TABLE_SIZE 2
47#endif
48
49#ifndef BASE_BAUD
50#define BASE_BAUD 115200
51#endif
52
53#endif /* __PPC_SYSLIB_PPC83XX_SETUP_H */