mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
[PATCH] powerpc: trivial: modify comments to refer to new location of files
This patch removes all self references and fixes references to files in the now defunct arch/ppc64 tree. I think this accomplises everything wanted, though there might be a few references I missed. Signed-off-by: Jon Mason <jdmason@us.ibm.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
75288c78c6
commit
2ef9481e66
@ -121,7 +121,7 @@ accomplished.
|
||||
|
||||
EEH must be enabled in the PHB's very early during the boot process,
|
||||
and if a PCI slot is hot-plugged. The former is performed by
|
||||
eeh_init() in arch/ppc64/kernel/eeh.c, and the later by
|
||||
eeh_init() in arch/powerpc/platforms/pseries/eeh.c, and the later by
|
||||
drivers/pci/hotplug/pSeries_pci.c calling in to the eeh.c code.
|
||||
EEH must be enabled before a PCI scan of the device can proceed.
|
||||
Current Power5 hardware will not work unless EEH is enabled;
|
||||
@ -133,7 +133,7 @@ error. Given an arbitrary address, the routine
|
||||
pci_get_device_by_addr() will find the pci device associated
|
||||
with that address (if any).
|
||||
|
||||
The default include/asm-ppc64/io.h macros readb(), inb(), insb(),
|
||||
The default include/asm-powerpc/io.h macros readb(), inb(), insb(),
|
||||
etc. include a check to see if the i/o read returned all-0xff's.
|
||||
If so, these make a call to eeh_dn_check_failure(), which in turn
|
||||
asks the firmware if the all-ff's value is the sign of a true EEH
|
||||
@ -143,11 +143,12 @@ seen in /proc/ppc64/eeh (subject to change). Normally, almost
|
||||
all of these occur during boot, when the PCI bus is scanned, where
|
||||
a large number of 0xff reads are part of the bus scan procedure.
|
||||
|
||||
If a frozen slot is detected, code in arch/ppc64/kernel/eeh.c will
|
||||
print a stack trace to syslog (/var/log/messages). This stack trace
|
||||
has proven to be very useful to device-driver authors for finding
|
||||
out at what point the EEH error was detected, as the error itself
|
||||
usually occurs slightly beforehand.
|
||||
If a frozen slot is detected, code in
|
||||
arch/powerpc/platforms/pseries/eeh.c will print a stack trace to
|
||||
syslog (/var/log/messages). This stack trace has proven to be very
|
||||
useful to device-driver authors for finding out at what point the EEH
|
||||
error was detected, as the error itself usually occurs slightly
|
||||
beforehand.
|
||||
|
||||
Next, it uses the Linux kernel notifier chain/work queue mechanism to
|
||||
allow any interested parties to find out about the failure. Device
|
||||
|
@ -1,7 +1,5 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# arch/ppc64/boot/install.sh
|
||||
#
|
||||
# This file is subject to the terms and conditions of the GNU General Public
|
||||
# License. See the file "COPYING" in the main directory of this archive
|
||||
# for more details.
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/kernel/entry.S
|
||||
*
|
||||
* PowerPC version
|
||||
* Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
|
||||
* Rewritten by Cort Dougan (cort@cs.nmt.edu) for PReP
|
||||
@ -374,7 +372,7 @@ _GLOBAL(ret_from_fork)
|
||||
* the fork code also.
|
||||
*
|
||||
* The code which creates the new task context is in 'copy_thread'
|
||||
* in arch/ppc64/kernel/process.c
|
||||
* in arch/powerpc/kernel/process.c
|
||||
*/
|
||||
.align 7
|
||||
_GLOBAL(_switch)
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/kernel/head_44x.S
|
||||
*
|
||||
* Kernel execution entry point code.
|
||||
*
|
||||
* Copyright (c) 1995-1996 Gary Thomas <gdt@linuxppc.org>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/kernel/head.S
|
||||
*
|
||||
* PowerPC version
|
||||
* Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/kernel/except_8xx.S
|
||||
*
|
||||
* PowerPC version
|
||||
* Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
|
||||
* Rewritten by Cort Dougan (cort@cs.nmt.edu) for PReP
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/kernel/head_fsl_booke.S
|
||||
*
|
||||
* Kernel execution entry point code.
|
||||
*
|
||||
* Copyright (c) 1995-1996 Gary Thomas <gdt@linuxppc.org>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/kernel/iomap.c
|
||||
*
|
||||
* ppc64 "iomap" interface implementation.
|
||||
*
|
||||
* (C) Copyright 2004 Linus Torvalds
|
||||
|
@ -1,5 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/kernel/iommu.c
|
||||
* Copyright (C) 2001 Mike Corrigan & Dave Engebretsen, IBM Corporation
|
||||
*
|
||||
* Rewrite, cleanup, new allocation schemes, virtual merging:
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/kernel/irq.c
|
||||
*
|
||||
* Derived from arch/i386/kernel/irq.c
|
||||
* Copyright (C) 1992 Linus Torvalds
|
||||
* Adapted from arch/i386 by Gary Thomas
|
||||
|
@ -1,6 +1,5 @@
|
||||
/*
|
||||
* Kernel Probes (KProbes)
|
||||
* arch/ppc64/kernel/kprobes.c
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@ -1,5 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/kernel/pci_iommu.c
|
||||
* Copyright (C) 2001 Mike Corrigan & Dave Engebretsen, IBM Corporation
|
||||
*
|
||||
* Rewrite, cleanup, new allocation schemes:
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/kernel/process.c
|
||||
*
|
||||
* Derived from "arch/i386/kernel/process.c"
|
||||
* Copyright (C) 1995 Linus Torvalds
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* linux/arch/ppc64/kernel/ptrace-common.h
|
||||
*
|
||||
* Copyright (c) 2002 Stephen Rothwell, IBM Coproration
|
||||
* Extracted from ptrace.c and ptrace32.c
|
||||
*
|
||||
|
@ -1,5 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/kernel/rtas-proc.c
|
||||
* Copyright (C) 2000 Tilmann Bitterberg
|
||||
* (tilmann@bitterberg.de)
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/kernel/rtas_pci.c
|
||||
*
|
||||
* Copyright (C) 2001 Dave Engebretsen, IBM Corporation
|
||||
* Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* linux/arch/ppc64/kernel/signal.c
|
||||
*
|
||||
* PowerPC version
|
||||
* Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* linux/arch/ppc64/kernel/vdso.c
|
||||
*
|
||||
* Copyright (C) 2004 Benjamin Herrenschmidt, IBM Corp.
|
||||
* <benh@kernel.crashing.org>
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/lib/copypage.S
|
||||
*
|
||||
* Copyright (C) 2002 Paul Mackerras, IBM Corp.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/lib/copyuser.S
|
||||
*
|
||||
* Copyright (C) 2002 Paul Mackerras, IBM Corp.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
@ -1,9 +1,7 @@
|
||||
/*
|
||||
* arch/ppc64/lib/e2a.c
|
||||
*
|
||||
* EBCDIC to ASCII conversion
|
||||
*
|
||||
* This function moved here from arch/ppc64/kernel/viopath.c
|
||||
* This function moved here from arch/powerpc/platforms/iseries/viopath.c
|
||||
*
|
||||
* (C) Copyright 2000-2004 IBM Corporation
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/lib/memcpy.S
|
||||
*
|
||||
* Copyright (C) 2002 Paul Mackerras, IBM Corp.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/syslib/rheap.c
|
||||
*
|
||||
* A Remote Heap. Remote means that we don't touch the memory that the
|
||||
* heap points to. Normal heap implementations use the memory they manage
|
||||
* to place their list. We cannot do that because the memory we manage may
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/mm/fault.c
|
||||
*
|
||||
* PowerPC version
|
||||
* Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/kernel/hashtable.S
|
||||
*
|
||||
* $Id: hashtable.S,v 1.6 1999/10/08 01:56:15 paulus Exp $
|
||||
*
|
||||
* PowerPC version
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* linux/arch/ppc64/mm/mmap.c
|
||||
*
|
||||
* flexible mmap layout support
|
||||
*
|
||||
* Copyright 2003-2004 Red Hat Inc., Durham, North Carolina.
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/mm/slb_low.S
|
||||
*
|
||||
* Low-level SLB routines
|
||||
*
|
||||
* Copyright (C) 2004 David Gibson <dwg@au.ibm.com>, IBM
|
||||
|
@ -36,7 +36,7 @@
|
||||
DEFINE_PER_CPU(struct ppc64_tlb_batch, ppc64_tlb_batch);
|
||||
|
||||
/* This is declared as we are using the more or less generic
|
||||
* include/asm-ppc64/tlb.h file -- tgall
|
||||
* include/asm-powerpc/tlb.h file -- tgall
|
||||
*/
|
||||
DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
|
||||
DEFINE_PER_CPU(struct pte_freelist_batch *, pte_freelist_cur);
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/chrp_pegasos_eth.c
|
||||
*
|
||||
* Copyright (C) 2005 Sven Luther <sl@bplan-gmbh.de>
|
||||
* Thanks to :
|
||||
* Dale Farnsworth <dale@farnsworth.org>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/setup.c
|
||||
*
|
||||
* Copyright (C) 1995 Linus Torvalds
|
||||
* Adapted from 'alpha' version by Gary Thomas
|
||||
* Modified by Cort Dougan (cort@cs.nmt.edu)
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/chrp_time.c
|
||||
*
|
||||
* Copyright (C) 1991, 1992, 1995 Linus Torvalds
|
||||
*
|
||||
* Adapted for PowerPC (PReP) by Gary Thomas
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/kernel/maple_time.c
|
||||
*
|
||||
* (c) Copyright 2004 Benjamin Herrenschmidt (benh@kernel.crashing.org),
|
||||
* IBM Corp.
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/pmac_cpufreq.c
|
||||
*
|
||||
* Copyright (C) 2002 - 2005 Benjamin Herrenschmidt <benh@kernel.crashing.org>
|
||||
* Copyright (C) 2004 John Steele Scott <toojays@toojays.net>
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/pmac_feature.c
|
||||
*
|
||||
* Copyright (C) 1996-2001 Paul Mackerras (paulus@cs.anu.edu.au)
|
||||
* Ben. Herrenschmidt (benh@kernel.crashing.org)
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/pmac_nvram.c
|
||||
*
|
||||
* Copyright (C) 2002 Benjamin Herrenschmidt (benh@kernel.crashing.org)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/kernel/pSeries_hvCall.S
|
||||
*
|
||||
* This file contains the generic code to perform a call to the
|
||||
* pSeries LPAR hypervisor.
|
||||
* NOTE: this file will go away when we move to inline this work.
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/kernel/pSeries_iommu.c
|
||||
*
|
||||
* Copyright (C) 2001 Mike Corrigan & Dave Engebretsen, IBM Corporation
|
||||
*
|
||||
* Rewrite, cleanup:
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc64/kernel/pSeries_pci.c
|
||||
*
|
||||
* Copyright (C) 2001 Dave Engebretsen, IBM Corporation
|
||||
* Copyright (C) 2003 Anton Blanchard <anton@au.ibm.com>, IBM
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/syslib/dcr.S
|
||||
*
|
||||
* "Indirect" DCR access
|
||||
*
|
||||
* Copyright (c) 2004 Eugene Surovegin <ebs@ebshome.net>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/kernel/ipic.h
|
||||
*
|
||||
* IPIC private definitions and structure.
|
||||
*
|
||||
* Maintainer: Kumar Gala <galak@kernel.crashing.org>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/4xx_io/serial_sicc.c
|
||||
*
|
||||
* Driver for IBM STB3xxx SICC serial port
|
||||
*
|
||||
* Based on drivers/char/serial_amba.c, by ARM Ltd.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* arch/ppc/amiga/amiints.c -- Amiga Linux interrupt handling code
|
||||
* Amiga Linux interrupt handling code
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU General Public
|
||||
* License. See the file COPYING in the main directory of this archive
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/amiga/bootinfo.c
|
||||
*
|
||||
* Extracted from arch/m68k/kernel/setup.c.
|
||||
* Should be properly generalized and put somewhere else.
|
||||
* Jesper
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/amiga/cia.c - CIA support
|
||||
*
|
||||
* Copyright (C) 1996 Roman Zippel
|
||||
*
|
||||
* The concept of some functions bases on the original Amiga OS function
|
||||
|
@ -1,8 +1,6 @@
|
||||
#define m68k_debug_device debug_device
|
||||
|
||||
/*
|
||||
* arch/ppc/amiga/config.c
|
||||
*
|
||||
* Copyright (C) 1993 Hamish Macdonald
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU General Public
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/amiga/ints.c
|
||||
*
|
||||
* Linux/m68k general interrupt handling code from arch/m68k/kernel/ints.c
|
||||
* Needed to drive the m68k emulating IRQ hardware on the PowerUp boards.
|
||||
*/
|
||||
|
@ -1,6 +1,3 @@
|
||||
#
|
||||
# arch/ppc/boot/Makefile
|
||||
#
|
||||
# This file is subject to the terms and conditions of the GNU General Public
|
||||
# License. See the file "COPYING" in the main directory of this archive
|
||||
# for more details.
|
||||
|
@ -1,6 +1,3 @@
|
||||
#
|
||||
# arch/ppc/boot/common/Makefile
|
||||
#
|
||||
# This file is subject to the terms and conditions of the GNU General Public
|
||||
# License. See the file "COPYING" in the main directory of this archive
|
||||
# for more details.
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/common/bootinfo.c
|
||||
*
|
||||
* General bootinfo record utilities
|
||||
* Author: Randy Vinson <rvinson@mvista.com>
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/common/misc-common.c
|
||||
*
|
||||
* Misc. bootloader code (almost) all platforms can use
|
||||
*
|
||||
* Author: Johnnie Peters <jpeters@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/common/serial_stub.c
|
||||
*
|
||||
* This is a few stub routines to make the boot code cleaner looking when
|
||||
* there is no serial port support doesn't need to be closed, for example.
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/common/util.S
|
||||
*
|
||||
* Useful bootup functions, which are more easily done in asm than C.
|
||||
*
|
||||
* NOTE: Be very very careful about the registers you use here.
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/include/mpc10.h
|
||||
*
|
||||
* Common defines for the Motorola SPS MPC106/8240/107 Host bridge/Mem
|
||||
* ctrl/EPIC/etc.
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/common/cpc700_memory.c
|
||||
*
|
||||
* Find memory based upon settings in the CPC700 bridge
|
||||
*
|
||||
* Author: Dan Cox
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/simple/head.S
|
||||
*
|
||||
* Initial board bringup code for many different boards.
|
||||
*
|
||||
* Author: Tom Rini
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/simple/misc-chestnut.c
|
||||
*
|
||||
* Setup for the IBM Chestnut (ibm-750fxgx_eval)
|
||||
*
|
||||
* Author: Mark A. Greer <mgreer@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/simple/misc-cpci690.c
|
||||
*
|
||||
* Add birec data for Force CPCI690 board.
|
||||
*
|
||||
* Author: Mark A. Greer <source@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/simple/misc-ev64260.c
|
||||
*
|
||||
* Host bridge init code for the Marvell/Galileo EV-64260-BP evaluation board
|
||||
* with a GT64260 onboard.
|
||||
*
|
||||
|
@ -1,5 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/simple/misc-ev64360.c
|
||||
* Copyright (C) 2005 Lee Nicks <allinux@gmail.com>
|
||||
*
|
||||
* Based on arch/ppc/boot/simple/misc-katana.c from:
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/simple/misc-katana.c
|
||||
*
|
||||
* Set up MPSC values to bootwrapper can prompt user.
|
||||
*
|
||||
* Author: Mark A. Greer <source@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/simple/misc-mv64x60.c
|
||||
*
|
||||
* Relocate bridge's register base and call board specific routine.
|
||||
*
|
||||
* Author: Mark A. Greer <source@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/simple/misc-prep.c
|
||||
*
|
||||
* Maintainer: Tom Rini <trini@kernel.crashing.org>
|
||||
*
|
||||
* In the past: Gary Thomas, Cort Dougan <cort@cs.nmt.edu>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/simple/misc-radstone_ppc7d.c
|
||||
*
|
||||
* Misc data for Radstone PPC7D board.
|
||||
*
|
||||
* Author: James Chapman <jchapman@katalix.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/spruce/misc.c
|
||||
*
|
||||
* Misc. bootloader code for IBM Spruce reference platform
|
||||
*
|
||||
* Authors: Johnnie Peters <jpeters@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/simple/misc.c
|
||||
*
|
||||
* Misc. bootloader code for many machines. This assumes you have are using
|
||||
* a 6xx/7xx/74xx CPU in your machine. This assumes the chunk of memory
|
||||
* below 8MB is free. Finally, it assumes you have a NS16550-style uart for
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/common/mpc10x_common.c
|
||||
*
|
||||
* A routine to find out how much memory the machine has.
|
||||
*
|
||||
* Based on:
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/simple/mpc52xx_tty.c
|
||||
*
|
||||
* Minimal serial functions needed to send messages out a MPC52xx
|
||||
* Programmable Serial Controller (PSC).
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/simple/mv64x60_tty.c
|
||||
*
|
||||
* Bootloader version of the embedded MPSC/UART driver for the Marvell 64x60.
|
||||
* Note: Due to a GT64260A erratum, DMA will be used for UART input (via SDMA).
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/simple/openbios.c
|
||||
*
|
||||
* Copyright (c) 2005 DENX Software Engineering
|
||||
* Stefan Roese <sr@denx.de>
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/simple/relocate.S
|
||||
*
|
||||
* This is the common part of the loader relocation and initialization
|
||||
* process. All of the board/processor specific initialization is
|
||||
* done before we get here.
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/boot/utils/mkbugboot.c
|
||||
*
|
||||
* Makes a Motorola PPCBUG ROM bootable image which can be flashed
|
||||
* into one of the FLASH banks on a Motorola PowerPlus board.
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/kernel/head_44x.S
|
||||
*
|
||||
* Kernel execution entry point code.
|
||||
*
|
||||
* Copyright (c) 1995-1996 Gary Thomas <gdt@linuxppc.org>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/kernel/except_8xx.S
|
||||
*
|
||||
* PowerPC version
|
||||
* Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
|
||||
* Rewritten by Cort Dougan (cort@cs.nmt.edu) for PReP
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/kernel/head_fsl_booke.S
|
||||
*
|
||||
* Kernel execution entry point code.
|
||||
*
|
||||
* Copyright (c) 1995-1996 Gary Thomas <gdt@linuxppc.org>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/kernel/traps.c
|
||||
*
|
||||
* Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/syslib/rheap.c
|
||||
*
|
||||
* A Remote Heap. Remote means that we don't touch the memory that the
|
||||
* heap points to. Normal heap implementations use the memory they manage
|
||||
* to place their list. We cannot do that because the memory we manage may
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/math-emu/math.c
|
||||
*
|
||||
* Copyright (C) 1999 Eddie C. Dost (ecd@atecom.com)
|
||||
*/
|
||||
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/mm/fault.c
|
||||
*
|
||||
* PowerPC version
|
||||
* Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/kernel/hashtable.S
|
||||
*
|
||||
* $Id: hashtable.S,v 1.6 1999/10/08 01:56:15 paulus Exp $
|
||||
*
|
||||
* PowerPC version
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/bamboo.c
|
||||
*
|
||||
* Bamboo board specific routines
|
||||
*
|
||||
* Wade Farnsworth <wfarnsworth@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/bamboo.h
|
||||
*
|
||||
* Bamboo board definitions
|
||||
*
|
||||
* Wade Farnsworth <wfarnsworth@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/bubinga.h
|
||||
*
|
||||
* Bubinga board definitions
|
||||
*
|
||||
* Copyright (c) 2005 DENX Software Engineering
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/cpci405.c
|
||||
*
|
||||
* Board setup routines for the esd CPCI-405 cPCI Board.
|
||||
*
|
||||
* Author: Stefan Roese
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ebony.c
|
||||
*
|
||||
* Ebony board specific routines
|
||||
*
|
||||
* Matt Porter <mporter@kernel.crashing.org>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/ebony.h
|
||||
*
|
||||
* Ebony board definitions
|
||||
*
|
||||
* Matt Porter <mporter@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ep405.c
|
||||
*
|
||||
* Embedded Planet 405GP board
|
||||
* http://www.embeddedplanet.com
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ep405.h
|
||||
*
|
||||
* Embedded Planet 405GP board
|
||||
* http://www.embeddedplanet.com
|
||||
*
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/ibm405ep.c
|
||||
*
|
||||
* Support for IBM PPC 405EP processors.
|
||||
*
|
||||
* Author: SAW (IBM), derived from ibmnp405l.c.
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ibm405ep.h
|
||||
*
|
||||
* IBM PPC 405EP processor defines.
|
||||
*
|
||||
* Author: SAW (IBM), derived from ibm405gp.h.
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ibm405gp.h
|
||||
*
|
||||
* Author: Armin Kuster akuster@mvista.com
|
||||
*
|
||||
* 2001 (c) MontaVista, Software, Inc. This file is licensed under
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ibm405gpr.c
|
||||
*
|
||||
* Author: Armin Kuster <akuster@mvista.com>
|
||||
*
|
||||
* 2002 (c) MontaVista, Software, Inc. This file is licensed under
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ibm405gpr.h
|
||||
*
|
||||
* Author: Armin Kuster <akuster@mvista.com>
|
||||
*
|
||||
* 2002 (c) MontaVista, Software, Inc. This file is licensed under
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ibm440ep.c
|
||||
*
|
||||
* PPC440EP I/O descriptions
|
||||
*
|
||||
* Wade Farnsworth <wfarnsworth@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ibm440ep.h
|
||||
*
|
||||
* PPC440EP definitions
|
||||
*
|
||||
* Wade Farnsworth <wfarnsworth@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ibm440gp.c
|
||||
*
|
||||
* PPC440GP I/O descriptions
|
||||
*
|
||||
* Matt Porter <mporter@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ibm440gp.h
|
||||
*
|
||||
* PPC440GP definitions
|
||||
*
|
||||
* Roland Dreier <roland@digitalvampire.org>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ibm440gx.c
|
||||
*
|
||||
* PPC440GX I/O descriptions
|
||||
*
|
||||
* Matt Porter <mporter@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/ibm440gx.h
|
||||
*
|
||||
* PPC440GX definitions
|
||||
*
|
||||
* Matt Porter <mporter@mvista.com>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ibm440sp.c
|
||||
*
|
||||
* PPC440SP I/O descriptions
|
||||
*
|
||||
* Matt Porter <mporter@kernel.crashing.org>
|
||||
|
@ -1,6 +1,4 @@
|
||||
/*
|
||||
* arch/ppc/platforms/4xx/ibm440sp.h
|
||||
*
|
||||
* PPC440SP definitions
|
||||
*
|
||||
* Matt Porter <mporter@kernel.crashing.org>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user