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

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

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ 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-or-later
  2 /*
  3  * Ebony board specific routines
  4  *
  5  * Matt Porter <mporter@kernel.crashing.org>
  6  * Copyright 2002-2005 MontaVista Software Inc.
  7  *
  8  * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
  9  * Copyright (c) 2003-2005 Zultys Technologies
 10  *
 11  * Rewritten and ported to the merged powerpc tree:
 12  * Copyright 2007 David Gibson <dwg@au1.ibm.com>, IBM Corporation.
 13  */
 14 
 15 #include <linux/init.h>
 16 #include <linux/of_platform.h>
 17 #include <linux/rtc.h>
 18 
 19 #include <asm/machdep.h>
 20 #include <asm/prom.h>
 21 #include <asm/udbg.h>
 22 #include <asm/time.h>
 23 #include <asm/uic.h>
 24 #include <asm/pci-bridge.h>
 25 #include <asm/ppc4xx.h>
 26 
 27 static const struct of_device_id ebony_of_bus[] __initconst = {
 28         { .compatible = "ibm,plb4", },
 29         { .compatible = "ibm,opb", },
 30         { .compatible = "ibm,ebc", },
 31         {},
 32 };
 33 
 34 static int __init ebony_device_probe(void)
 35 {
 36         of_platform_bus_probe(NULL, ebony_of_bus, NULL);
 37         of_instantiate_rtc();
 38 
 39         return 0;
 40 }
 41 machine_device_initcall(ebony, ebony_device_probe);
 42 
 43 /*
 44  * Called very early, MMU is off, device-tree isn't unflattened
 45  */
 46 static int __init ebony_probe(void)
 47 {
 48         pci_set_flags(PCI_REASSIGN_ALL_RSRC);
 49 
 50         return 1;
 51 }
 52 
 53 define_machine(ebony) {
 54         .name                   = "Ebony",
 55         .compatible             = "ibm,ebony",
 56         .probe                  = ebony_probe,
 57         .progress               = udbg_progress,
 58         .init_IRQ               = uic_init_tree,
 59         .get_irq                = uic_get_irq,
 60         .restart                = ppc4xx_reset_system,
 61 };
 62 

~ [ 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