~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/powerpc/platforms/44x/ppc44x_simple.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-only
  2 /*
  3  * Generic PowerPC 44x platform support
  4  *
  5  * Copyright 2008 IBM Corporation
  6  *
  7  * This implements simple platform support for PowerPC 44x chips.  This is
  8  * mostly used for eval boards or other simple and "generic" 44x boards.  If
  9  * your board has custom functions or hardware, then you will likely want to
 10  * implement your own board.c file to accommodate it.
 11  */
 12 
 13 #include <asm/machdep.h>
 14 #include <asm/pci-bridge.h>
 15 #include <asm/ppc4xx.h>
 16 #include <asm/time.h>
 17 #include <asm/udbg.h>
 18 #include <asm/uic.h>
 19 
 20 #include <linux/init.h>
 21 #include <linux/of_platform.h>
 22 
 23 static const struct of_device_id ppc44x_of_bus[] __initconst = {
 24         { .compatible = "ibm,plb4", },
 25         { .compatible = "ibm,opb", },
 26         { .compatible = "ibm,ebc", },
 27         { .compatible = "simple-bus", },
 28         {},
 29 };
 30 
 31 static int __init ppc44x_device_probe(void)
 32 {
 33         of_platform_bus_probe(NULL, ppc44x_of_bus, NULL);
 34 
 35         return 0;
 36 }
 37 machine_device_initcall(ppc44x_simple, ppc44x_device_probe);
 38 
 39 /* This is the list of boards that can be supported by this simple
 40  * platform code.  This does _not_ mean the boards are compatible,
 41  * as they most certainly are not from a device tree perspective.
 42  * However, their differences are handled by the device tree and the
 43  * drivers and therefore they don't need custom board support files.
 44  *
 45  * Again, if your board needs to do things differently then create a
 46  * board.c file for it rather than adding it to this list.
 47  */
 48 static char *board[] __initdata = {
 49         "amcc,arches",
 50         "amcc,bamboo",
 51         "apm,bluestone",
 52         "amcc,glacier",
 53         "ibm,ebony",
 54         "amcc,eiger",
 55         "amcc,katmai",
 56         "amcc,rainier",
 57         "amcc,redwood",
 58         "amcc,sequoia",
 59         "amcc,taishan",
 60         "amcc,yosemite",
 61         "mosaixtech,icon"
 62 };
 63 
 64 static int __init ppc44x_probe(void)
 65 {
 66         int i = 0;
 67 
 68         for (i = 0; i < ARRAY_SIZE(board); i++) {
 69                 if (of_machine_is_compatible(board[i])) {
 70                         pci_set_flags(PCI_REASSIGN_ALL_RSRC);
 71                         return 1;
 72                 }
 73         }
 74 
 75         return 0;
 76 }
 77 
 78 define_machine(ppc44x_simple) {
 79         .name = "PowerPC 44x Platform",
 80         .probe = ppc44x_probe,
 81         .progress = udbg_progress,
 82         .init_IRQ = uic_init_tree,
 83         .get_irq = uic_get_irq,
 84         .restart = ppc4xx_reset_system,
 85 };
 86 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php