~ubuntu-branches/debian/wheezy/linux-2.6/wheezy

« back to all changes in this revision

Viewing changes to arch/powerpc/platforms/86xx/gef_ppc9a.c

  • Committer: Bazaar Package Importer
  • Author(s): Ben Hutchings, Ben Hutchings, Aurelien Jarno, Martin Michlmayr
  • Date: 2011-04-06 13:53:30 UTC
  • mfrom: (43.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110406135330-wjufxhd0tvn3zx4z
Tags: 2.6.38-3
[ Ben Hutchings ]
* [ppc64] Add to linux-tools package architectures (Closes: #620124)
* [amd64] Save cr4 to mmu_cr4_features at boot time (Closes: #620284)
* appletalk: Fix bugs introduced when removing use of BKL
* ALSA: Fix yet another race in disconnection
* cciss: Fix lost command issue
* ath9k: Fix kernel panic in AR2427
* ses: Avoid kernel panic when lun 0 is not mapped
* PCI/ACPI: Report ASPM support to BIOS if not disabled from command line

[ Aurelien Jarno ]
* rtlwifi: fix build when PCI is not enabled.

[ Martin Michlmayr ]
* rtlwifi: Eliminate udelay calls with too large values (Closes: #620204)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * GE Fanuc PPC9A board support
3
 
 *
4
 
 * Author: Martyn Welch <martyn.welch@gefanuc.com>
5
 
 *
6
 
 * Copyright 2008 GE Fanuc Intelligent Platforms Embedded Systems, Inc.
 
2
 * GE PPC9A board support
 
3
 *
 
4
 * Author: Martyn Welch <martyn.welch@ge.com>
 
5
 *
 
6
 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
7
7
 *
8
8
 * This program is free software; you can redistribute  it and/or modify it
9
9
 * under  the terms of  the GNU General  Public License as published by the
33
33
#include <asm/udbg.h>
34
34
 
35
35
#include <asm/mpic.h>
 
36
#include <asm/nvram.h>
36
37
 
37
38
#include <sysdev/fsl_pci.h>
38
39
#include <sysdev/fsl_soc.h>
81
82
        }
82
83
#endif
83
84
 
84
 
        printk(KERN_INFO "GE Fanuc Intelligent Platforms PPC9A 6U VME SBC\n");
 
85
        printk(KERN_INFO "GE Intelligent Platforms PPC9A 6U VME SBC\n");
85
86
 
86
87
#ifdef CONFIG_SMP
87
88
        mpc86xx_smp_init();
95
96
                        printk(KERN_WARNING "Unable to map board registers\n");
96
97
                of_node_put(regs);
97
98
        }
 
99
 
 
100
#if defined(CONFIG_MMIO_NVRAM)
 
101
        mmio_nvram_init();
 
102
#endif
98
103
}
99
104
 
100
105
/* Return the PCB revision */
146
151
{
147
152
        uint svid = mfspr(SPRN_SVR);
148
153
 
149
 
        seq_printf(m, "Vendor\t\t: GE Fanuc Intelligent Platforms\n");
 
154
        seq_printf(m, "Vendor\t\t: GE Intelligent Platforms\n");
150
155
 
151
156
        seq_printf(m, "Revision\t: %u%c\n", gef_ppc9a_get_pcb_rev(),
152
157
                ('A' + gef_ppc9a_get_board_rev()));
230
235
machine_device_initcall(gef_ppc9a, declare_of_platform_devices);
231
236
 
232
237
define_machine(gef_ppc9a) {
233
 
        .name                   = "GE Fanuc PPC9A",
 
238
        .name                   = "GE PPC9A",
234
239
        .probe                  = gef_ppc9a_probe,
235
240
        .setup_arch             = gef_ppc9a_setup_arch,
236
241
        .init_IRQ               = gef_ppc9a_init_irq,