📄 arctic-mtd.c
字号:
/* * $Id: arctic-mtd.c,v 1.4 2003/04/02 18:57:15 trini Exp $ * * drivers/mtd/maps/arctic-mtd.c MTD mappings and partition tables for * IBM 405LP Arctic boards. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Copyright (C) 2002, International Business Machines Corporation * All Rights Reserved. * * Bishop Brock * IBM Research, Austin Center for Low-Power Computing * bcbrock@us.ibm.com * March 2002 * * modified for Arctic by, * David Gibson * IBM OzLabs, Canberra, Australia * <arctic@gibson.dropbear.id.au> */#include <linux/kernel.h>#include <linux/module.h>#include <linux/types.h>#include <linux/mtd/mtd.h>#include <linux/mtd/map.h>#include <linux/mtd/partitions.h>#include <asm/io.h>#include <asm/ibm4xx.h>/* * fe000000 -- ff9fffff Arctic FFS (26MB) * ffa00000 -- fff5ffff kernel (5.504MB) * fff60000 -- ffffffff firmware (640KB) */#define ARCTIC_FFS_SIZE 0x01a00000 /* 26 M */#define ARCTIC_FIRMWARE_SIZE 0x000a0000 /* 640K */#define NAME "Arctic Linux Flash"#define PADDR SUBZERO_BOOTFLASH_PADDR#define SIZE SUBZERO_BOOTFLASH_SIZE#define BUSWIDTH 2/* Flash memories on these boards are memory resources, accessed big-endian. */static u8arctic_mtd_read8(struct map_info *map, unsigned long offset){ return __raw_readb(map->map_priv_1 + offset);}static u16arctic_mtd_read16(struct map_info *map, unsigned long offset){ return __raw_readw(map->map_priv_1 + offset);}static u32arctic_mtd_read32(struct map_info *map, unsigned long offset){ return __raw_readl(map->map_priv_1 + offset);}static voidarctic_mtd_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len){ memcpy_fromio(to, (void *) (map->map_priv_1 + from), len);}static voidarctic_mtd_write8(struct map_info *map, u8 data, unsigned long address){ __raw_writeb(data, map->map_priv_1 + address); mb();}static voidarctic_mtd_write16(struct map_info *map, u16 data, unsigned long address){ __raw_writew(data, map->map_priv_1 + address); mb();}static voidarctic_mtd_write32(struct map_info *map, u32 data, unsigned long address){ __raw_writel(data, map->map_priv_1 + address); mb();}static voidarctic_mtd_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len){ memcpy_toio((void *) (map->map_priv_1 + to), from, len);}u_char * arctic_mtd_point(struct map_info *map, loff_t from, size_t len){ return (u_char *)(map->map_priv_1 + (unsigned long)from);}void arctic_mtd_unpoint(struct map_info *map, u_char *adr, loff_t from, size_t len){ /* do nothing for now */}static struct map_info arctic_mtd_map = { .name = NAME, .size = SIZE, .buswidth = BUSWIDTH, .read8 = arctic_mtd_read8, .read16 = arctic_mtd_read16, .read32 = arctic_mtd_read32, .point = arctic_mtd_point, .unpoint = arctic_mtd_unpoint, .copy_from = arctic_mtd_copy_from, .write8 = arctic_mtd_write8, .write16 = arctic_mtd_write16, .write32 = arctic_mtd_write32, .copy_to = arctic_mtd_copy_to,};static struct mtd_info *arctic_mtd;static struct mtd_partition arctic_partitions[3] = { { .name = "Arctic FFS", .size = ARCTIC_FFS_SIZE, .offset = 0,}, { .name = "Kernel", .size = SUBZERO_BOOTFLASH_SIZE - ARCTIC_FFS_SIZE - ARCTIC_FIRMWARE_SIZE, .offset = ARCTIC_FFS_SIZE,}, { .name = "Firmware", .size = ARCTIC_FIRMWARE_SIZE, .offset = SUBZERO_BOOTFLASH_SIZE - ARCTIC_FIRMWARE_SIZE,},};static int __initinit_arctic_mtd(void){ printk("%s: 0x%08x at 0x%08x\n", NAME, SIZE, PADDR); arctic_mtd_map.map_priv_1 = (unsigned long) ioremap(PADDR, SIZE); if (!arctic_mtd_map.map_priv_1) { printk("%s: failed to ioremap 0x%x\n", NAME, PADDR); return -EIO; } printk("%s: probing %d-bit flash bus\n", NAME, BUSWIDTH * 8); arctic_mtd = do_map_probe("cfi_probe", &arctic_mtd_map); if (!arctic_mtd) return -ENXIO; arctic_mtd->module = THIS_MODULE; return add_mtd_partitions(arctic_mtd, arctic_partitions, 3);}static void __exitcleanup_arctic_mtd(void){ if (arctic_mtd) { del_mtd_partitions(arctic_mtd); map_destroy(arctic_mtd); iounmap((void *) arctic_mtd_map.map_priv_1); }}module_init(init_arctic_mtd);module_exit(cleanup_arctic_mtd);MODULE_LICENSE("GPL");MODULE_AUTHOR("David Gibson <arctic@gibson.dropbear.id.au>");MODULE_DESCRIPTION("MTD map and partitions for IBM 405LP Arctic boards");
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -