Linux Kernel
3.7.1
|
#include <linux/dma-mapping.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/platform_device.h>
#include <linux/of.h>
#include <linux/of_device.h>
#include <linux/of_gpio.h>
#include <linux/of_mtd.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/nand.h>
#include <linux/mtd/partitions.h>
#include <linux/dmaengine.h>
#include <linux/gpio.h>
#include <linux/io.h>
#include <linux/platform_data/atmel.h>
#include <mach/cpu.h>
#include "atmel_nand_ecc.h"
Go to the source code of this file.
Data Structures | |
struct | atmel_nand_host |
Macros | |
#define | ecc_readl(add, reg) __raw_readl(add + ATMEL_ECC_##reg) |
#define | ecc_writel(add, reg, value) __raw_writel((value), add + ATMEL_ECC_##reg) |
Functions | |
module_param (use_dma, int, 0) | |
module_param (on_flash_bbt, int, 0) | |
module_init (atmel_nand_init) | |
module_exit (atmel_nand_exit) | |
MODULE_LICENSE ("GPL") | |
MODULE_AUTHOR ("Rick Bronson") | |
MODULE_DESCRIPTION ("NAND/SmartMedia driver for AT91 / AVR32") | |
MODULE_ALIAS ("platform:atmel_nand") | |
#define ecc_readl | ( | add, | |
reg | |||
) | __raw_readl(add + ATMEL_ECC_##reg) |
Definition at line 54 of file atmel_nand.c.
Definition at line 56 of file atmel_nand.c.
MODULE_ALIAS | ( | "platform:atmel_nand" | ) |
MODULE_AUTHOR | ( | "Rick Bronson" | ) |
module_exit | ( | atmel_nand_exit | ) |
module_init | ( | atmel_nand_init | ) |
MODULE_LICENSE | ( | "GPL" | ) |
module_param | ( | on_flash_bbt | , |
int | , | ||
0 | |||
) |