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

TOMOYO Linux Cross Reference
Linux/arch/arm/mach-gemini/board-dt.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
  2 /*
  3  * Gemini Device Tree boot support
  4  */
  5 #include <linux/kernel.h>
  6 #include <linux/init.h>
  7 #include <linux/io.h>
  8 
  9 #include <asm/mach/arch.h>
 10 #include <asm/mach/map.h>
 11 #include <asm/system_misc.h>
 12 #include <asm/proc-fns.h>
 13 
 14 #ifdef CONFIG_DEBUG_GEMINI
 15 /* This is needed for LL-debug/earlyprintk/debug-macro.S */
 16 static struct map_desc gemini_io_desc[] __initdata = {
 17         {
 18                 .virtual = CONFIG_DEBUG_UART_VIRT,
 19                 .pfn = __phys_to_pfn(CONFIG_DEBUG_UART_PHYS),
 20                 .length = SZ_4K,
 21                 .type = MT_DEVICE,
 22         },
 23 };
 24 
 25 static void __init gemini_map_io(void)
 26 {
 27         iotable_init(gemini_io_desc, ARRAY_SIZE(gemini_io_desc));
 28 }
 29 #else
 30 #define gemini_map_io NULL
 31 #endif
 32 
 33 static void gemini_idle(void)
 34 {
 35         /*
 36          * Because of broken hardware we have to enable interrupts or the CPU
 37          * will never wakeup... Acctualy it is not very good to enable
 38          * interrupts first since scheduler can miss a tick, but there is
 39          * no other way around this. Platforms that needs it for power saving
 40          * should enable it in init code, since by default it is
 41          * disabled.
 42          */
 43 
 44         /* FIXME: Enabling interrupts here is racy! */
 45         raw_local_irq_enable();
 46         cpu_do_idle();
 47         raw_local_irq_disable();
 48 }
 49 
 50 static void __init gemini_init_machine(void)
 51 {
 52         arm_pm_idle = gemini_idle;
 53 }
 54 
 55 static const char *gemini_board_compat[] = {
 56         "cortina,gemini",
 57         NULL,
 58 };
 59 
 60 DT_MACHINE_START(GEMINI_DT, "Gemini (Device Tree)")
 61         .map_io         = gemini_map_io,
 62         .init_machine   = gemini_init_machine,
 63         .dt_compat      = gemini_board_compat,
 64 MACHINE_END
 65 

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