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

TOMOYO Linux Cross Reference
Linux/arch/powerpc/platforms/512x/mpc5121_ads.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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  * Copyright (C) 2007, 2008 Freescale Semiconductor, Inc. All rights reserved.
  4  *
  5  * Author: John Rigby, <jrigby@freescale.com>, Thur Mar 29 2007
  6  *
  7  * Description:
  8  * MPC5121 ADS board setup
  9  */
 10 
 11 #include <linux/kernel.h>
 12 #include <linux/io.h>
 13 #include <linux/of.h>
 14 
 15 #include <asm/machdep.h>
 16 #include <asm/ipic.h>
 17 #include <asm/time.h>
 18 
 19 #include <sysdev/fsl_pci.h>
 20 
 21 #include "mpc512x.h"
 22 #include "mpc5121_ads.h"
 23 
 24 static void __init mpc5121_ads_setup_arch(void)
 25 {
 26         printk(KERN_INFO "MPC5121 ADS board from Freescale Semiconductor\n");
 27         /*
 28          * cpld regs are needed early
 29          */
 30         mpc5121_ads_cpld_map();
 31 
 32         mpc512x_setup_arch();
 33 }
 34 
 35 static void __init mpc5121_ads_setup_pci(void)
 36 {
 37 #ifdef CONFIG_PCI
 38         struct device_node *np;
 39 
 40         for_each_compatible_node(np, "pci", "fsl,mpc5121-pci")
 41                 mpc83xx_add_bridge(np);
 42 #endif
 43 }
 44 
 45 static void __init mpc5121_ads_init_IRQ(void)
 46 {
 47         mpc512x_init_IRQ();
 48         mpc5121_ads_cpld_pic_init();
 49 }
 50 
 51 /*
 52  * Called very early, MMU is off, device-tree isn't unflattened
 53  */
 54 static int __init mpc5121_ads_probe(void)
 55 {
 56         mpc512x_init_early();
 57 
 58         return 1;
 59 }
 60 
 61 define_machine(mpc5121_ads) {
 62         .name                   = "MPC5121 ADS",
 63         .compatible             = "fsl,mpc5121ads",
 64         .probe                  = mpc5121_ads_probe,
 65         .setup_arch             = mpc5121_ads_setup_arch,
 66         .discover_phbs          = mpc5121_ads_setup_pci,
 67         .init                   = mpc512x_init,
 68         .init_IRQ               = mpc5121_ads_init_IRQ,
 69         .get_irq                = ipic_get_irq,
 70         .restart                = mpc512x_restart,
 71 };
 72 

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