diff options
author | Len Brown <len.brown@intel.com> | 2005-12-07 01:31:30 +0300 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-12-07 01:31:30 +0300 |
commit | 3d5271f9883cba7b54762bc4fe027d4172f06db7 (patch) | |
tree | ab8a881a14478598a0c8bda0d26c62cdccfffd6d /arch/powerpc/xmon/start_8xx.c | |
parent | 378b2556f4e09fa6f87ff0cb5c4395ff28257d02 (diff) | |
parent | 9115a6c787596e687df03010d97fccc5e0762506 (diff) | |
download | linux-3d5271f9883cba7b54762bc4fe027d4172f06db7.tar.xz |
Pull release into acpica branch
Diffstat (limited to 'arch/powerpc/xmon/start_8xx.c')
-rw-r--r-- | arch/powerpc/xmon/start_8xx.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/arch/powerpc/xmon/start_8xx.c b/arch/powerpc/xmon/start_8xx.c new file mode 100644 index 000000000000..4c17b0486ad5 --- /dev/null +++ b/arch/powerpc/xmon/start_8xx.c @@ -0,0 +1,44 @@ +/* + * Copyright (C) 1996 Paul Mackerras. + * Copyright (C) 2000 Dan Malek. + * Quick hack of Paul's code to make XMON work on 8xx processors. Lots + * of assumptions, like the SMC1 is used, it has been initialized by the + * loader at some point, and we can just stuff and suck bytes. + * We rely upon the 8xx uart driver to support us, as the interface + * changes between boot up and operational phases of the kernel. + */ +#include <linux/string.h> +#include <asm/machdep.h> +#include <asm/io.h> +#include <asm/page.h> +#include <linux/kernel.h> +#include <asm/8xx_immap.h> +#include <asm/mpc8xx.h> +#include <asm/commproc.h> +#include "nonstdio.h" + +extern int xmon_8xx_write(char *str, int nb); +extern int xmon_8xx_read_poll(void); +extern int xmon_8xx_read_char(void); + +void xmon_map_scc(void) +{ + cpmp = (cpm8xx_t *)&(((immap_t *)IMAP_ADDR)->im_cpm); +} + +void xmon_init_scc(void); + +int xmon_write(void *ptr, int nb) +{ + return(xmon_8xx_write(ptr, nb)); +} + +int xmon_readchar(void) +{ + return xmon_8xx_read_char(); +} + +int xmon_read_poll(void) +{ + return(xmon_8xx_read_poll()); +} |