2005-07-11 12:41:53 +02:00
|
|
|
/*
|
|
|
|
* linux/include/linux/mtd/onenand.h
|
|
|
|
*
|
2006-09-26 11:45:28 +02:00
|
|
|
* Copyright (C) 2005-2006 Samsung Electronics
|
2005-07-11 12:41:53 +02:00
|
|
|
* Kyungmin Park <kyungmin.park@samsung.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LINUX_MTD_ONENAND_H
|
|
|
|
#define __LINUX_MTD_ONENAND_H
|
|
|
|
|
|
|
|
#include <linux/spinlock.h>
|
2006-11-16 03:23:48 +01:00
|
|
|
#include <linux/completion.h>
|
2005-07-11 12:41:53 +02:00
|
|
|
#include <linux/mtd/onenand_regs.h>
|
2005-09-03 08:15:48 +02:00
|
|
|
#include <linux/mtd/bbm.h>
|
2005-07-11 12:41:53 +02:00
|
|
|
|
|
|
|
#define MAX_BUFFERRAM 2
|
|
|
|
|
|
|
|
/* Scan and identify a OneNAND device */
|
|
|
|
extern int onenand_scan(struct mtd_info *mtd, int max_chips);
|
|
|
|
/* Free resources held by the OneNAND device */
|
|
|
|
extern void onenand_release(struct mtd_info *mtd);
|
|
|
|
|
2006-06-29 06:48:38 +02:00
|
|
|
/*
|
2005-07-11 12:41:53 +02:00
|
|
|
* onenand_state_t - chip states
|
|
|
|
* Enumeration for OneNAND flash chip state
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
FL_READY,
|
|
|
|
FL_READING,
|
|
|
|
FL_WRITING,
|
|
|
|
FL_ERASING,
|
|
|
|
FL_SYNCING,
|
|
|
|
FL_LOCKING,
|
2006-05-12 16:03:07 +02:00
|
|
|
FL_RESETING,
|
|
|
|
FL_OTPING,
|
2005-09-29 04:55:31 +02:00
|
|
|
FL_PM_SUSPENDED,
|
2005-07-11 12:41:53 +02:00
|
|
|
} onenand_state_t;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct onenand_bufferram - OneNAND BufferRAM Data
|
2006-06-29 06:48:38 +02:00
|
|
|
* @block: block address in BufferRAM
|
|
|
|
* @page: page address in BufferRAM
|
|
|
|
* @valid: valid flag
|
2005-07-11 12:41:53 +02:00
|
|
|
*/
|
|
|
|
struct onenand_bufferram {
|
|
|
|
int block;
|
|
|
|
int page;
|
|
|
|
int valid;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* struct onenand_chip - OneNAND Private Flash Chip Data
|
2006-06-29 06:48:38 +02:00
|
|
|
* @base: [BOARDSPECIFIC] address to access OneNAND
|
|
|
|
* @chipsize: [INTERN] the size of one chip for multichip arrays
|
|
|
|
* @device_id: [INTERN] device ID
|
|
|
|
* @density_mask: chip density, used for DDP devices
|
|
|
|
* @verstion_id: [INTERN] version ID
|
|
|
|
* @options: [BOARDSPECIFIC] various chip options. They can
|
|
|
|
* partly be set to inform onenand_scan about
|
|
|
|
* @erase_shift: [INTERN] number of address bits in a block
|
|
|
|
* @page_shift: [INTERN] number of address bits in a page
|
|
|
|
* @ppb_shift: [INTERN] number of address bits in a pages per block
|
|
|
|
* @page_mask: [INTERN] a page per block mask
|
|
|
|
* @bufferram_index: [INTERN] BufferRAM index
|
|
|
|
* @bufferram: [INTERN] BufferRAM info
|
|
|
|
* @readw: [REPLACEABLE] hardware specific function for read short
|
|
|
|
* @writew: [REPLACEABLE] hardware specific function for write short
|
|
|
|
* @command: [REPLACEABLE] hardware specific function for writing
|
|
|
|
* commands to the chip
|
|
|
|
* @wait: [REPLACEABLE] hardware specific function for wait on ready
|
|
|
|
* @read_bufferram: [REPLACEABLE] hardware specific function for BufferRAM Area
|
|
|
|
* @write_bufferram: [REPLACEABLE] hardware specific function for BufferRAM Area
|
|
|
|
* @read_word: [REPLACEABLE] hardware specific function for read
|
|
|
|
* register of OneNAND
|
|
|
|
* @write_word: [REPLACEABLE] hardware specific function for write
|
|
|
|
* register of OneNAND
|
|
|
|
* @mmcontrol: sync burst read function
|
|
|
|
* @block_markbad: function to mark a block as bad
|
|
|
|
* @scan_bbt: [REPLACEALBE] hardware specific function for scanning
|
|
|
|
* Bad block Table
|
|
|
|
* @chip_lock: [INTERN] spinlock used to protect access to this
|
|
|
|
* structure and the chip
|
|
|
|
* @wq: [INTERN] wait queue to sleep on if a OneNAND
|
|
|
|
* operation is in progress
|
|
|
|
* @state: [INTERN] the current state of the OneNAND device
|
|
|
|
* @page_buf: data buffer
|
2006-12-22 08:21:54 +01:00
|
|
|
* @subpagesize: [INTERN] holds the subpagesize
|
2006-06-29 06:48:38 +02:00
|
|
|
* @ecclayout: [REPLACEABLE] the default ecc placement scheme
|
|
|
|
* @bbm: [REPLACEABLE] pointer to Bad Block Management
|
|
|
|
* @priv: [OPTIONAL] pointer to private chip date
|
2005-07-11 12:41:53 +02:00
|
|
|
*/
|
|
|
|
struct onenand_chip {
|
|
|
|
void __iomem *base;
|
|
|
|
unsigned int chipsize;
|
|
|
|
unsigned int device_id;
|
2006-09-26 11:45:28 +02:00
|
|
|
unsigned int version_id;
|
2005-09-29 05:53:16 +02:00
|
|
|
unsigned int density_mask;
|
2005-07-11 12:41:53 +02:00
|
|
|
unsigned int options;
|
|
|
|
|
|
|
|
unsigned int erase_shift;
|
|
|
|
unsigned int page_shift;
|
|
|
|
unsigned int ppb_shift; /* Pages per block shift */
|
|
|
|
unsigned int page_mask;
|
|
|
|
|
|
|
|
unsigned int bufferram_index;
|
|
|
|
struct onenand_bufferram bufferram[MAX_BUFFERRAM];
|
|
|
|
|
|
|
|
int (*command)(struct mtd_info *mtd, int cmd, loff_t address, size_t len);
|
|
|
|
int (*wait)(struct mtd_info *mtd, int state);
|
|
|
|
int (*read_bufferram)(struct mtd_info *mtd, int area,
|
|
|
|
unsigned char *buffer, int offset, size_t count);
|
|
|
|
int (*write_bufferram)(struct mtd_info *mtd, int area,
|
|
|
|
const unsigned char *buffer, int offset, size_t count);
|
|
|
|
unsigned short (*read_word)(void __iomem *addr);
|
|
|
|
void (*write_word)(unsigned short value, void __iomem *addr);
|
2005-09-03 08:07:19 +02:00
|
|
|
void (*mmcontrol)(struct mtd_info *mtd, int sync_read);
|
2005-09-03 08:15:48 +02:00
|
|
|
int (*block_markbad)(struct mtd_info *mtd, loff_t ofs);
|
|
|
|
int (*scan_bbt)(struct mtd_info *mtd);
|
2005-07-11 12:41:53 +02:00
|
|
|
|
2006-11-16 03:23:48 +01:00
|
|
|
struct completion complete;
|
|
|
|
int irq;
|
|
|
|
|
2005-07-11 12:41:53 +02:00
|
|
|
spinlock_t chip_lock;
|
|
|
|
wait_queue_head_t wq;
|
|
|
|
onenand_state_t state;
|
2005-12-16 03:17:29 +01:00
|
|
|
unsigned char *page_buf;
|
2005-07-11 12:41:53 +02:00
|
|
|
|
2006-12-22 08:21:54 +01:00
|
|
|
int subpagesize;
|
2006-05-27 22:16:10 +02:00
|
|
|
struct nand_ecclayout *ecclayout;
|
2005-07-11 12:41:53 +02:00
|
|
|
|
2006-05-27 22:16:10 +02:00
|
|
|
void *bbm;
|
2005-09-03 08:15:48 +02:00
|
|
|
|
2005-07-11 12:41:53 +02:00
|
|
|
void *priv;
|
|
|
|
};
|
|
|
|
|
2005-09-03 08:20:08 +02:00
|
|
|
/*
|
|
|
|
* Helper macros
|
|
|
|
*/
|
2005-07-11 12:41:53 +02:00
|
|
|
#define ONENAND_CURRENT_BUFFERRAM(this) (this->bufferram_index)
|
|
|
|
#define ONENAND_NEXT_BUFFERRAM(this) (this->bufferram_index ^ 1)
|
|
|
|
#define ONENAND_SET_NEXT_BUFFERRAM(this) (this->bufferram_index ^= 1)
|
2007-01-04 08:51:26 +01:00
|
|
|
#define ONENAND_SET_PREV_BUFFERRAM(this) (this->bufferram_index ^= 1)
|
2005-07-11 12:41:53 +02:00
|
|
|
|
2005-09-03 08:20:08 +02:00
|
|
|
#define ONENAND_GET_SYS_CFG1(this) \
|
|
|
|
(this->read_word(this->base + ONENAND_REG_SYS_CFG1))
|
|
|
|
#define ONENAND_SET_SYS_CFG1(v, this) \
|
|
|
|
(this->write_word(v, this->base + ONENAND_REG_SYS_CFG1))
|
|
|
|
|
2007-01-15 09:09:14 +01:00
|
|
|
#define ONENAND_IS_DDP(this) \
|
|
|
|
(this->device_id & ONENAND_DEVICE_IS_DDP)
|
|
|
|
|
2006-05-12 16:02:31 +02:00
|
|
|
/* Check byte access in OneNAND */
|
|
|
|
#define ONENAND_CHECK_BYTE_ACCESS(addr) (addr & 0x1)
|
|
|
|
|
2005-07-11 12:41:53 +02:00
|
|
|
/*
|
|
|
|
* Options bits
|
|
|
|
*/
|
2006-09-26 11:45:28 +02:00
|
|
|
#define ONENAND_HAS_CONT_LOCK (0x0001)
|
|
|
|
#define ONENAND_HAS_UNLOCK_ALL (0x0002)
|
2005-12-16 03:17:29 +01:00
|
|
|
#define ONENAND_PAGEBUF_ALLOC (0x1000)
|
2005-07-11 12:41:53 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* OneNAND Flash Manufacturer ID Codes
|
|
|
|
*/
|
|
|
|
#define ONENAND_MFR_SAMSUNG 0xec
|
|
|
|
|
|
|
|
/**
|
2006-06-29 06:48:38 +02:00
|
|
|
* struct onenand_manufacturers - NAND Flash Manufacturer ID Structure
|
|
|
|
* @name: Manufacturer name
|
|
|
|
* @id: manufacturer ID code of device.
|
2005-07-11 12:41:53 +02:00
|
|
|
*/
|
|
|
|
struct onenand_manufacturers {
|
|
|
|
int id;
|
|
|
|
char *name;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __LINUX_MTD_ONENAND_H */
|