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

TOMOYO Linux Cross Reference
Linux/arch/sh/boards/board-espt.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
  2 /*
  3  * Data Technology Inc. ESPT-GIGA board support
  4  *
  5  * Copyright (C) 2008, 2009 Renesas Solutions Corp.
  6  * Copyright (C) 2008, 2009 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
  7  */
  8 #include <linux/init.h>
  9 #include <linux/platform_device.h>
 10 #include <linux/interrupt.h>
 11 #include <linux/mtd/physmap.h>
 12 #include <linux/io.h>
 13 #include <linux/sh_eth.h>
 14 #include <linux/sh_intc.h>
 15 #include <asm/machvec.h>
 16 #include <linux/sizes.h>
 17 
 18 /* NOR Flash */
 19 static struct mtd_partition espt_nor_flash_partitions[] = {
 20         {
 21                 .name = "U-Boot",
 22                 .offset = 0,
 23                 .size = (2 * SZ_128K),
 24                 .mask_flags = MTD_WRITEABLE,    /* Read-only */
 25         }, {
 26                 .name = "Linux-Kernel",
 27                 .offset = MTDPART_OFS_APPEND,
 28                 .size = (20 * SZ_128K),
 29         }, {
 30                 .name = "Root Filesystem",
 31                 .offset = MTDPART_OFS_APPEND,
 32                 .size = MTDPART_SIZ_FULL,
 33         },
 34 };
 35 
 36 static struct physmap_flash_data espt_nor_flash_data = {
 37         .width = 2,
 38         .parts = espt_nor_flash_partitions,
 39         .nr_parts = ARRAY_SIZE(espt_nor_flash_partitions),
 40 };
 41 
 42 static struct resource espt_nor_flash_resources[] = {
 43         [0] = {
 44                 .name = "NOR Flash",
 45                 .start = 0,
 46                 .end = SZ_8M - 1,
 47                 .flags = IORESOURCE_MEM,
 48         },
 49 };
 50 
 51 static struct platform_device espt_nor_flash_device = {
 52         .name = "physmap-flash",
 53         .resource = espt_nor_flash_resources,
 54         .num_resources = ARRAY_SIZE(espt_nor_flash_resources),
 55         .dev = {
 56                 .platform_data = &espt_nor_flash_data,
 57         },
 58 };
 59 
 60 /* SH-Ether */
 61 static struct resource sh_eth_resources[] = {
 62         {
 63                 .start  = 0xFEE00800,   /* use eth1 */
 64                 .end    = 0xFEE00F7C - 1,
 65                 .flags  = IORESOURCE_MEM,
 66         }, {
 67                 .start  = 0xFEE01800,   /* TSU */
 68                 .end    = 0xFEE01FFF,
 69                 .flags  = IORESOURCE_MEM,
 70         }, {
 71 
 72                 .start  = evt2irq(0x920),   /* irq number */
 73                 .flags  = IORESOURCE_IRQ,
 74         },
 75 };
 76 
 77 static struct sh_eth_plat_data sh7763_eth_pdata = {
 78         .phy = 0,
 79         .phy_interface = PHY_INTERFACE_MODE_MII,
 80 };
 81 
 82 static struct platform_device espt_eth_device = {
 83         .name       = "sh7763-gether",
 84         .resource   = sh_eth_resources,
 85         .num_resources  = ARRAY_SIZE(sh_eth_resources),
 86         .dev        = {
 87                 .platform_data = &sh7763_eth_pdata,
 88         },
 89 };
 90 
 91 static struct platform_device *espt_devices[] __initdata = {
 92         &espt_nor_flash_device,
 93         &espt_eth_device,
 94 };
 95 
 96 static int __init espt_devices_setup(void)
 97 {
 98         return platform_add_devices(espt_devices,
 99                                     ARRAY_SIZE(espt_devices));
100 }
101 device_initcall(espt_devices_setup);
102 
103 static struct sh_machine_vector mv_espt __initmv = {
104         .mv_name = "ESPT-GIGA",
105 };
106 

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