Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
1ad84001
Commit
1ad84001
authored
Aug 11, 2004
by
David Woodhouse
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://linux-mtd.bkbits.net/mtd-2.6
into dwmw2.baythorne.internal:/inst/bk/mtd-2.6
parents
384278b0
60abe48a
Changes
34
Show whitespace changes
Inline
Side-by-side
Showing
34 changed files
with
661 additions
and
194 deletions
+661
-194
drivers/mtd/Kconfig
drivers/mtd/Kconfig
+2
-2
drivers/mtd/Makefile
drivers/mtd/Makefile
+5
-2
drivers/mtd/chips/amd_flash.c
drivers/mtd/chips/amd_flash.c
+2
-4
drivers/mtd/chips/cfi_cmdset_0001.c
drivers/mtd/chips/cfi_cmdset_0001.c
+2
-3
drivers/mtd/chips/cfi_cmdset_0002.c
drivers/mtd/chips/cfi_cmdset_0002.c
+3
-5
drivers/mtd/chips/cfi_cmdset_0020.c
drivers/mtd/chips/cfi_cmdset_0020.c
+2
-3
drivers/mtd/chips/jedec.c
drivers/mtd/chips/jedec.c
+2
-3
drivers/mtd/chips/map_ram.c
drivers/mtd/chips/map_ram.c
+2
-3
drivers/mtd/chips/sharp.c
drivers/mtd/chips/sharp.c
+2
-3
drivers/mtd/devices/Kconfig
drivers/mtd/devices/Kconfig
+17
-5
drivers/mtd/devices/blkmtd.c
drivers/mtd/devices/blkmtd.c
+3
-5
drivers/mtd/devices/doc2000.c
drivers/mtd/devices/doc2000.c
+2
-3
drivers/mtd/devices/doc2001.c
drivers/mtd/devices/doc2001.c
+2
-3
drivers/mtd/devices/doc2001plus.c
drivers/mtd/devices/doc2001plus.c
+2
-3
drivers/mtd/devices/lart.c
drivers/mtd/devices/lart.c
+2
-2
drivers/mtd/devices/ms02-nv.c
drivers/mtd/devices/ms02-nv.c
+2
-2
drivers/mtd/devices/mtdram.c
drivers/mtd/devices/mtdram.c
+2
-3
drivers/mtd/devices/phram.c
drivers/mtd/devices/phram.c
+2
-5
drivers/mtd/devices/pmc551.c
drivers/mtd/devices/pmc551.c
+2
-4
drivers/mtd/devices/slram.c
drivers/mtd/devices/slram.c
+2
-7
drivers/mtd/ftl.c
drivers/mtd/ftl.c
+2
-2
drivers/mtd/inftlcore.c
drivers/mtd/inftlcore.c
+2
-2
drivers/mtd/inftlmount.c
drivers/mtd/inftlmount.c
+2
-2
drivers/mtd/maps/Kconfig
drivers/mtd/maps/Kconfig
+11
-4
drivers/mtd/maps/ichxrom.c
drivers/mtd/maps/ichxrom.c
+1
-1
drivers/mtd/maps/physmap.c
drivers/mtd/maps/physmap.c
+7
-2
drivers/mtd/mtdchar.c
drivers/mtd/mtdchar.c
+3
-4
drivers/mtd/mtdpart.c
drivers/mtd/mtdpart.c
+15
-3
drivers/mtd/nand/Kconfig
drivers/mtd/nand/Kconfig
+41
-5
drivers/mtd/nand/diskonchip.c
drivers/mtd/nand/diskonchip.c
+487
-82
drivers/mtd/nand/nand_base.c
drivers/mtd/nand/nand_base.c
+10
-10
drivers/mtd/redboot.c
drivers/mtd/redboot.c
+4
-3
include/linux/mtd/mtd.h
include/linux/mtd/mtd.h
+13
-1
include/linux/mtd/physmap.h
include/linux/mtd/physmap.h
+3
-3
No files found.
drivers/mtd/Kconfig
View file @
1ad84001
# $Id: Kconfig,v 1.
5 2004/06/04 15:59:32 gleixner
Exp $
# $Id: Kconfig,v 1.
6 2004/08/09 13:19:42 dwmw2
Exp $
menu "Memory Technology Devices (MTD)"
menu "Memory Technology Devices (MTD)"
...
@@ -28,7 +28,7 @@ config MTD_DEBUG_VERBOSE
...
@@ -28,7 +28,7 @@ config MTD_DEBUG_VERBOSE
Determines the verbosity level of the MTD debugging messages.
Determines the verbosity level of the MTD debugging messages.
config MTD_PARTITIONS
config MTD_PARTITIONS
tristate
"MTD partitioning support"
bool
"MTD partitioning support"
depends on MTD
depends on MTD
help
help
If you have a device which needs to divide its flash chip(s) up
If you have a device which needs to divide its flash chip(s) up
...
...
drivers/mtd/Makefile
View file @
1ad84001
#
#
# Makefile for the memory technology device drivers.
# Makefile for the memory technology device drivers.
#
#
# $Id: Makefile.common,v 1.
3 2004/07/12 16:07:30
dwmw2 Exp $
# $Id: Makefile.common,v 1.
4 2004/08/09 13:19:42
dwmw2 Exp $
# Core functionality.
# Core functionality.
obj-$(CONFIG_MTD)
+=
mtdcore.o
mtd-y
:=
mtdcore.o
mtd-$(CONFIG_MTD_PARTITIONS)
+=
mtdpart.o
obj-$(CONFIG_MTD)
+=
$
(
mtd-y
)
obj-$(CONFIG_MTD_CONCAT)
+=
mtdconcat.o
obj-$(CONFIG_MTD_CONCAT)
+=
mtdconcat.o
obj-$(CONFIG_MTD_PARTITIONS)
+=
mtdpart.o
obj-$(CONFIG_MTD_PARTITIONS)
+=
mtdpart.o
obj-$(CONFIG_MTD_REDBOOT_PARTS)
+=
redboot.o
obj-$(CONFIG_MTD_REDBOOT_PARTS)
+=
redboot.o
...
...
drivers/mtd/chips/amd_flash.c
View file @
1ad84001
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
*
*
* Author: Jonas Holmberg <jonas.holmberg@axis.com>
* Author: Jonas Holmberg <jonas.holmberg@axis.com>
*
*
* $Id: amd_flash.c,v 1.2
4 2004/07/12 13:34:30
dwmw2 Exp $
* $Id: amd_flash.c,v 1.2
5 2004/08/09 13:19:43
dwmw2 Exp $
*
*
* Copyright (c) 2001 Axis Communications AB
* Copyright (c) 2001 Axis Communications AB
*
*
...
@@ -1307,9 +1307,7 @@ static int amd_flash_erase(struct mtd_info *mtd, struct erase_info *instr)
...
@@ -1307,9 +1307,7 @@ static int amd_flash_erase(struct mtd_info *mtd, struct erase_info *instr)
}
}
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
if
(
instr
->
callback
)
{
mtd_erase_callback
(
instr
);
instr
->
callback
(
instr
);
}
return
0
;
return
0
;
}
}
...
...
drivers/mtd/chips/cfi_cmdset_0001.c
View file @
1ad84001
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
*
*
* (C) 2000 Red Hat. GPL'd
* (C) 2000 Red Hat. GPL'd
*
*
* $Id: cfi_cmdset_0001.c,v 1.15
3 2004/07/12 21:52:20
dwmw2 Exp $
* $Id: cfi_cmdset_0001.c,v 1.15
4 2004/08/09 13:19:43
dwmw2 Exp $
*
*
*
*
* 10/10/2000 Nicolas Pitre <nico@cam.org>
* 10/10/2000 Nicolas Pitre <nico@cam.org>
...
@@ -1554,8 +1554,7 @@ int cfi_intelext_erase_varsize(struct mtd_info *mtd, struct erase_info *instr)
...
@@ -1554,8 +1554,7 @@ int cfi_intelext_erase_varsize(struct mtd_info *mtd, struct erase_info *instr)
return
ret
;
return
ret
;
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
if
(
instr
->
callback
)
mtd_erase_callback
(
instr
);
instr
->
callback
(
instr
);
return
0
;
return
0
;
}
}
...
...
drivers/mtd/chips/cfi_cmdset_0002.c
View file @
1ad84001
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
*
*
* This code is GPL
* This code is GPL
*
*
* $Id: cfi_cmdset_0002.c,v 1.10
3 2004/07/14 16:24:03
dwmw2 Exp $
* $Id: cfi_cmdset_0002.c,v 1.10
6 2004/08/09 14:02:32
dwmw2 Exp $
*
*
*/
*/
...
@@ -1420,8 +1420,7 @@ int cfi_amdstd_erase_varsize(struct mtd_info *mtd, struct erase_info *instr)
...
@@ -1420,8 +1420,7 @@ int cfi_amdstd_erase_varsize(struct mtd_info *mtd, struct erase_info *instr)
return
ret
;
return
ret
;
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
if
(
instr
->
callback
)
mtd_erase_callback
(
instr
);
instr
->
callback
(
instr
);
return
0
;
return
0
;
}
}
...
@@ -1444,8 +1443,7 @@ static int cfi_amdstd_erase_chip(struct mtd_info *mtd, struct erase_info *instr)
...
@@ -1444,8 +1443,7 @@ static int cfi_amdstd_erase_chip(struct mtd_info *mtd, struct erase_info *instr)
return
ret
;
return
ret
;
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
if
(
instr
->
callback
)
mtd_erase_callback
(
instr
);
instr
->
callback
(
instr
);
return
0
;
return
0
;
}
}
...
...
drivers/mtd/chips/cfi_cmdset_0020.c
View file @
1ad84001
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
*
*
* (C) 2000 Red Hat. GPL'd
* (C) 2000 Red Hat. GPL'd
*
*
* $Id: cfi_cmdset_0020.c,v 1.1
4 2004/07/20 02:44:25
dwmw2 Exp $
* $Id: cfi_cmdset_0020.c,v 1.1
5 2004/08/09 13:19:43
dwmw2 Exp $
*
*
* 10/10/2000 Nicolas Pitre <nico@cam.org>
* 10/10/2000 Nicolas Pitre <nico@cam.org>
* - completely revamped method functions so they are aware and
* - completely revamped method functions so they are aware and
...
@@ -966,8 +966,7 @@ int cfi_staa_erase_varsize(struct mtd_info *mtd, struct erase_info *instr)
...
@@ -966,8 +966,7 @@ int cfi_staa_erase_varsize(struct mtd_info *mtd, struct erase_info *instr)
}
}
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
if
(
instr
->
callback
)
mtd_erase_callback
(
instr
);
instr
->
callback
(
instr
);
return
0
;
return
0
;
}
}
...
...
drivers/mtd/chips/jedec.c
View file @
1ad84001
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
* not going to guess how to send commands to them, plus I expect they will
* not going to guess how to send commands to them, plus I expect they will
* all speak CFI..
* all speak CFI..
*
*
* $Id: jedec.c,v 1.2
0 2004/07/12 14:03:01
dwmw2 Exp $
* $Id: jedec.c,v 1.2
1 2004/08/09 13:19:43
dwmw2 Exp $
*/
*/
#include <linux/init.h>
#include <linux/init.h>
...
@@ -780,8 +780,7 @@ static int flash_erase(struct mtd_info *mtd, struct erase_info *instr)
...
@@ -780,8 +780,7 @@ static int flash_erase(struct mtd_info *mtd, struct erase_info *instr)
//printk("done\n");
//printk("done\n");
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
if
(
instr
->
callback
)
mtd_erase_callback
(
instr
);
instr
->
callback
(
instr
);
return
0
;
return
0
;
#undef flread
#undef flread
...
...
drivers/mtd/chips/map_ram.c
View file @
1ad84001
/*
/*
* Common code to handle map devices which are simple RAM
* Common code to handle map devices which are simple RAM
* (C) 2000 Red Hat. GPL'd.
* (C) 2000 Red Hat. GPL'd.
* $Id: map_ram.c,v 1.
19 2004/07/12 21:58:44
dwmw2 Exp $
* $Id: map_ram.c,v 1.
20 2004/08/09 13:19:43
dwmw2 Exp $
*/
*/
#include <linux/module.h>
#include <linux/module.h>
...
@@ -114,8 +114,7 @@ static int mapram_erase (struct mtd_info *mtd, struct erase_info *instr)
...
@@ -114,8 +114,7 @@ static int mapram_erase (struct mtd_info *mtd, struct erase_info *instr)
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
if
(
instr
->
callback
)
mtd_erase_callback
(
instr
);
instr
->
callback
(
instr
);
return
0
;
return
0
;
}
}
...
...
drivers/mtd/chips/sharp.c
View file @
1ad84001
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
* Copyright 2000,2001 David A. Schleef <ds@schleef.org>
* Copyright 2000,2001 David A. Schleef <ds@schleef.org>
* 2000,2001 Lineo, Inc.
* 2000,2001 Lineo, Inc.
*
*
* $Id: sharp.c,v 1.1
3 2004/07/12 14:06:34
dwmw2 Exp $
* $Id: sharp.c,v 1.1
4 2004/08/09 13:19:43
dwmw2 Exp $
*
*
* Devices supported:
* Devices supported:
* LH28F016SCT Symmetrical block flash memory, 2Mx8
* LH28F016SCT Symmetrical block flash memory, 2Mx8
...
@@ -425,8 +425,7 @@ static int sharp_erase(struct mtd_info *mtd, struct erase_info *instr)
...
@@ -425,8 +425,7 @@ static int sharp_erase(struct mtd_info *mtd, struct erase_info *instr)
}
}
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
if
(
instr
->
callback
)
mtd_erase_callback
(
instr
);
instr
->
callback
(
instr
);
return
0
;
return
0
;
}
}
...
...
drivers/mtd/devices/Kconfig
View file @
1ad84001
# drivers/mtd/maps/Kconfig
# drivers/mtd/maps/Kconfig
# $Id: Kconfig,v 1.1
0 2004/07/15 00:34:49
dwmw2 Exp $
# $Id: Kconfig,v 1.1
2 2004/08/10 13:12:18
dwmw2 Exp $
menu "Self-contained MTD device drivers"
menu "Self-contained MTD device drivers"
depends on MTD!=n
depends on MTD!=n
...
@@ -128,7 +128,7 @@ config MTD_BLKMTD
...
@@ -128,7 +128,7 @@ config MTD_BLKMTD
comment "Disk-On-Chip Device Drivers"
comment "Disk-On-Chip Device Drivers"
config MTD_DOC2000
config MTD_DOC2000
tristate "M-Systems Disk-On-Chip 2000 and Millennium"
tristate "M-Systems Disk-On-Chip 2000 and Millennium
(DEPRECATED)
"
depends on MTD
depends on MTD
---help---
---help---
This provides an MTD device driver for the M-Systems DiskOnChip
This provides an MTD device driver for the M-Systems DiskOnChip
...
@@ -144,8 +144,12 @@ config MTD_DOC2000
...
@@ -144,8 +144,12 @@ config MTD_DOC2000
emulate a block device by using a kind of file system on the flash
emulate a block device by using a kind of file system on the flash
chips.
chips.
NOTE: This driver is deprecated and will probably be removed soon.
Please try the new DiskOnChip driver under "NAND Flash Device
Drivers".
config MTD_DOC2001
config MTD_DOC2001
tristate "M-Systems Disk-On-Chip Millennium-only alternative driver (
see help
)"
tristate "M-Systems Disk-On-Chip Millennium-only alternative driver (
DEPRECATED
)"
depends on MTD
depends on MTD
---help---
---help---
This provides an alternative MTD device driver for the M-Systems
This provides an alternative MTD device driver for the M-Systems
...
@@ -160,6 +164,10 @@ config MTD_DOC2001
...
@@ -160,6 +164,10 @@ config MTD_DOC2001
emulate a block device by using a kind of file system on the flash
emulate a block device by using a kind of file system on the flash
chips.
chips.
NOTE: This driver is deprecated and will probably be removed soon.
Please try the new DiskOnChip driver under "NAND Flash Device
Drivers".
config MTD_DOC2001PLUS
config MTD_DOC2001PLUS
tristate "M-Systems Disk-On-Chip Millennium Plus"
tristate "M-Systems Disk-On-Chip Millennium Plus"
depends on MTD
depends on MTD
...
@@ -172,19 +180,23 @@ config MTD_DOC2001PLUS
...
@@ -172,19 +180,23 @@ config MTD_DOC2001PLUS
to emulate a block device by using a kind of file system on the
to emulate a block device by using a kind of file system on the
flash chips.
flash chips.
NOTE: This driver will soon be replaced by the new DiskOnChip driver
under "NAND Flash Device Drivers" (currently that driver does not
support all Millennium Plus devices).
config MTD_DOCPROBE
config MTD_DOCPROBE
tristate
tristate
default m if MTD_DOC2001!=y && MTD_DOC2000!=y && MTD_DOC2001PLUS!=y && (MTD_DOC2001=m || MTD_DOC2000=m || MTD_DOC2001PLUS=m)
default m if MTD_DOC2001!=y && MTD_DOC2000!=y && MTD_DOC2001PLUS!=y && (MTD_DOC2001=m || MTD_DOC2000=m || MTD_DOC2001PLUS=m)
default y if MTD_DOC2001=y || MTD_DOC2000=y || MTD_DOC2001PLUS=y
default y if MTD_DOC2001=y || MTD_DOC2000=y || MTD_DOC2001PLUS=y
help
help
This isn't a real config option
,
it's derived.
This isn't a real config option
;
it's derived.
config MTD_DOCECC
config MTD_DOCECC
tristate
tristate
default m if MTD_DOCPROBE!=y && MTD_NAND_DISKONCHIP!=y && (MTD_DOCPROBE=m || MTD_NAND_DISKONCHIP=m)
default m if MTD_DOCPROBE!=y && MTD_NAND_DISKONCHIP!=y && (MTD_DOCPROBE=m || MTD_NAND_DISKONCHIP=m)
default y if MTD_DOCPROBE=y || MTD_NAND_DISKONCHIP=y
default y if MTD_DOCPROBE=y || MTD_NAND_DISKONCHIP=y
help
help
This isn't a real config option
,
it's derived.
This isn't a real config option
;
it's derived.
config MTD_DOCPROBE_ADVANCED
config MTD_DOCPROBE_ADVANCED
bool "Advanced detection options for DiskOnChip"
bool "Advanced detection options for DiskOnChip"
...
...
drivers/mtd/devices/blkmtd.c
View file @
1ad84001
/*
/*
* $Id: blkmtd
-25.c,v 1.6 2004/07/15 15:09:15
dwmw2 Exp $
* $Id: blkmtd
.c,v 1.23 2004/08/09 14:03:19
dwmw2 Exp $
*
*
* blkmtd.c - use a block device as a fake MTD
* blkmtd.c - use a block device as a fake MTD
*
*
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
/* Default erase size in K, always make it a multiple of PAGE_SIZE */
/* Default erase size in K, always make it a multiple of PAGE_SIZE */
#define CONFIG_MTD_BLKDEV_ERASESIZE (128 << 10)
/* 128KiB */
#define CONFIG_MTD_BLKDEV_ERASESIZE (128 << 10)
/* 128KiB */
#define VERSION "$Revision: 1.
6
$"
#define VERSION "$Revision: 1.
23
$"
/* Info for the block device */
/* Info for the block device */
struct
blkmtd_dev
{
struct
blkmtd_dev
{
...
@@ -435,9 +435,7 @@ static int blkmtd_erase(struct mtd_info *mtd, struct erase_info *instr)
...
@@ -435,9 +435,7 @@ static int blkmtd_erase(struct mtd_info *mtd, struct erase_info *instr)
}
}
DEBUG
(
3
,
"blkmtd: erase: checking callback
\n
"
);
DEBUG
(
3
,
"blkmtd: erase: checking callback
\n
"
);
if
(
instr
->
callback
)
{
mtd_erase_callback
(
instr
);
(
*
(
instr
->
callback
))(
instr
);
}
DEBUG
(
2
,
"blkmtd: erase: finished (err = %d)
\n
"
,
err
);
DEBUG
(
2
,
"blkmtd: erase: finished (err = %d)
\n
"
,
err
);
return
err
;
return
err
;
}
}
...
...
drivers/mtd/devices/doc2000.c
View file @
1ad84001
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
* (c) 1999 Machine Vision Holdings, Inc.
* (c) 1999 Machine Vision Holdings, Inc.
* (c) 1999, 2000 David Woodhouse <dwmw2@infradead.org>
* (c) 1999, 2000 David Woodhouse <dwmw2@infradead.org>
*
*
* $Id: doc2000.c,v 1.6
0 2004/04/07 08:30:04 gleixner
Exp $
* $Id: doc2000.c,v 1.6
2 2004/08/09 14:04:02 dwmw2
Exp $
*/
*/
#include <linux/kernel.h>
#include <linux/kernel.h>
...
@@ -1277,8 +1277,7 @@ static int doc_erase(struct mtd_info *mtd, struct erase_info *instr)
...
@@ -1277,8 +1277,7 @@ static int doc_erase(struct mtd_info *mtd, struct erase_info *instr)
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
callback:
callback:
if
(
instr
->
callback
)
mtd_erase_callback
(
instr
);
instr
->
callback
(
instr
);
up
(
&
this
->
lock
);
up
(
&
this
->
lock
);
return
0
;
return
0
;
...
...
drivers/mtd/devices/doc2001.c
View file @
1ad84001
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
* (c) 1999 Machine Vision Holdings, Inc.
* (c) 1999 Machine Vision Holdings, Inc.
* (c) 1999, 2000 David Woodhouse <dwmw2@infradead.org>
* (c) 1999, 2000 David Woodhouse <dwmw2@infradead.org>
*
*
* $Id: doc2001.c,v 1.4
2 2004/04/04 12:36:45 gleixner
Exp $
* $Id: doc2001.c,v 1.4
4 2004/08/09 14:04:24 dwmw2
Exp $
*/
*/
#include <linux/kernel.h>
#include <linux/kernel.h>
...
@@ -845,8 +845,7 @@ int doc_erase (struct mtd_info *mtd, struct erase_info *instr)
...
@@ -845,8 +845,7 @@ int doc_erase (struct mtd_info *mtd, struct erase_info *instr)
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
dummy
=
ReadDOC
(
docptr
,
LastDataRead
);
dummy
=
ReadDOC
(
docptr
,
LastDataRead
);
if
(
instr
->
callback
)
mtd_erase_callback
(
instr
);
instr
->
callback
(
instr
);
return
0
;
return
0
;
}
}
...
...
drivers/mtd/devices/doc2001plus.c
View file @
1ad84001
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
* (c) 1999 Machine Vision Holdings, Inc.
* (c) 1999 Machine Vision Holdings, Inc.
* (c) 1999, 2000 David Woodhouse <dwmw2@infradead.org>
* (c) 1999, 2000 David Woodhouse <dwmw2@infradead.org>
*
*
* $Id: doc2001plus.c,v 1.
8 2004/04/04 12:36:45 gleixner
Exp $
* $Id: doc2001plus.c,v 1.
9 2004/08/09 13:19:44 dwmw2
Exp $
*
*
* Released under GPL
* Released under GPL
*/
*/
...
@@ -1111,8 +1111,7 @@ int doc_erase(struct mtd_info *mtd, struct erase_info *instr)
...
@@ -1111,8 +1111,7 @@ int doc_erase(struct mtd_info *mtd, struct erase_info *instr)
/* Disable flash internally */
/* Disable flash internally */
WriteDOC
(
0
,
docptr
,
Mplus_FlashSelect
);
WriteDOC
(
0
,
docptr
,
Mplus_FlashSelect
);
if
(
instr
->
callback
)
mtd_erase_callback
(
instr
);
instr
->
callback
(
instr
);
return
0
;
return
0
;
}
}
...
...
drivers/mtd/devices/lart.c
View file @
1ad84001
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
/*
/*
* MTD driver for the 28F160F3 Flash Memory (non-CFI) on LART.
* MTD driver for the 28F160F3 Flash Memory (non-CFI) on LART.
*
*
* $Id: lart.c,v 1.
6 2004/07/14 17:21:38
dwmw2 Exp $
* $Id: lart.c,v 1.
7 2004/08/09 13:19:44
dwmw2 Exp $
*
*
* Author: Abraham vd Merwe <abraham@2d3d.co.za>
* Author: Abraham vd Merwe <abraham@2d3d.co.za>
*
*
...
@@ -433,7 +433,7 @@ static int flash_erase (struct mtd_info *mtd,struct erase_info *instr)
...
@@ -433,7 +433,7 @@ static int flash_erase (struct mtd_info *mtd,struct erase_info *instr)
}
}
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
if
(
instr
->
callback
)
instr
->
callback
(
instr
);
mtd_erase_callback
(
instr
);
return
(
0
);
return
(
0
);
}
}
...
...
drivers/mtd/devices/ms02-nv.c
View file @
1ad84001
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
* as published by the Free Software Foundation; either version
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
* 2 of the License, or (at your option) any later version.
*
*
* $Id: ms02-nv.c,v 1.
6 2003/08/19 09:25:36 dwmw2
Exp $
* $Id: ms02-nv.c,v 1.
7 2004/07/29 14:16:45 macro
Exp $
*/
*/
#include <linux/init.h>
#include <linux/init.h>
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
static
char
version
[]
__initdata
=
static
char
version
[]
__initdata
=
"ms02-nv.c: v.1.0.0 13 Aug 2001 Maciej W. Rozycki.
\n
"
;
"ms02-nv.c: v.1.0.0 13 Aug 2001 Maciej W. Rozycki.
\n
"
;
MODULE_AUTHOR
(
"Maciej W. Rozycki <macro@
ds2.pg.gda.pl
>"
);
MODULE_AUTHOR
(
"Maciej W. Rozycki <macro@
linux-mips.org
>"
);
MODULE_DESCRIPTION
(
"DEC MS02-NV NVRAM module driver"
);
MODULE_DESCRIPTION
(
"DEC MS02-NV NVRAM module driver"
);
MODULE_LICENSE
(
"GPL"
);
MODULE_LICENSE
(
"GPL"
);
...
...
drivers/mtd/devices/mtdram.c
View file @
1ad84001
/*
/*
* mtdram - a test mtd device
* mtdram - a test mtd device
* $Id: mtdram.c,v 1.3
2 2003/05/21 15:15:07
dwmw2 Exp $
* $Id: mtdram.c,v 1.3
3 2004/08/09 13:19:44
dwmw2 Exp $
* Author: Alexander Larsson <alex@cendio.se>
* Author: Alexander Larsson <alex@cendio.se>
*
*
* Copyright (c) 1999 Alexander Larsson <alex@cendio.se>
* Copyright (c) 1999 Alexander Larsson <alex@cendio.se>
...
@@ -57,9 +57,8 @@ ram_erase(struct mtd_info *mtd, struct erase_info *instr)
...
@@ -57,9 +57,8 @@ ram_erase(struct mtd_info *mtd, struct erase_info *instr)
memset
((
char
*
)
mtd
->
priv
+
instr
->
addr
,
0xff
,
instr
->
len
);
memset
((
char
*
)
mtd
->
priv
+
instr
->
addr
,
0xff
,
instr
->
len
);
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
mtd_erase_callback
(
instr
);
if
(
instr
->
callback
)
(
*
(
instr
->
callback
))(
instr
);
return
0
;
return
0
;
}
}
...
...
drivers/mtd/devices/phram.c
View file @
1ad84001
/**
/**
*
*
* $Id: phram.c,v 1.
1 2003/08/21 17:52:30 joern
Exp $
* $Id: phram.c,v 1.
2 2004/08/09 13:19:44 dwmw2
Exp $
*
*
* Copyright (c) Jochen Schaeuble <psionic@psionic.de>
* Copyright (c) Jochen Schaeuble <psionic@psionic.de>
* 07/2003 rewritten by Joern Engel <joern@wh.fh-wedel.de>
* 07/2003 rewritten by Joern Engel <joern@wh.fh-wedel.de>
...
@@ -55,10 +55,7 @@ int phram_erase(struct mtd_info *mtd, struct erase_info *instr)
...
@@ -55,10 +55,7 @@ int phram_erase(struct mtd_info *mtd, struct erase_info *instr)
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
if
(
instr
->
callback
)
mtd_erase_callback
(
instr
);
(
*
(
instr
->
callback
))(
instr
);
else
kfree
(
instr
);
return
0
;
return
0
;
}
}
...
...
drivers/mtd/devices/pmc551.c
View file @
1ad84001
/*
/*
* $Id: pmc551.c,v 1.2
7 2004/07/20 02:44:26
dwmw2 Exp $
* $Id: pmc551.c,v 1.2
8 2004/08/09 13:19:44
dwmw2 Exp $
*
*
* PMC551 PCI Mezzanine Ram Device
* PMC551 PCI Mezzanine Ram Device
*
*
...
@@ -169,9 +169,7 @@ static int pmc551_erase (struct mtd_info *mtd, struct erase_info *instr)
...
@@ -169,9 +169,7 @@ static int pmc551_erase (struct mtd_info *mtd, struct erase_info *instr)
printk
(
KERN_DEBUG
"pmc551_erase() done
\n
"
);
printk
(
KERN_DEBUG
"pmc551_erase() done
\n
"
);
#endif
#endif
if
(
instr
->
callback
)
{
mtd_erase_callback
(
instr
);
(
*
(
instr
->
callback
))(
instr
);
}
return
0
;
return
0
;
}
}
...
...
drivers/mtd/devices/slram.c
View file @
1ad84001
/*======================================================================
/*======================================================================
$Id: slram.c,v 1.3
0 2003/05/20 21:03:08
dwmw2 Exp $
$Id: slram.c,v 1.3
1 2004/08/09 13:19:44
dwmw2 Exp $
This driver provides a method to access memory not used by the kernel
This driver provides a method to access memory not used by the kernel
itself (i.e. if the kernel commandline mem=xxx is used). To actually
itself (i.e. if the kernel commandline mem=xxx is used). To actually
...
@@ -98,12 +98,7 @@ int slram_erase(struct mtd_info *mtd, struct erase_info *instr)
...
@@ -98,12 +98,7 @@ int slram_erase(struct mtd_info *mtd, struct erase_info *instr)
instr
->
state
=
MTD_ERASE_DONE
;
instr
->
state
=
MTD_ERASE_DONE
;
if
(
instr
->
callback
)
{
mtd_erase_callback
(
instr
);
(
*
(
instr
->
callback
))(
instr
);
}
else
{
kfree
(
instr
);
}
return
(
0
);
return
(
0
);
}
}
...
...
drivers/mtd/ftl.c
View file @
1ad84001
/* This version ported to the Linux-MTD system by dwmw2@infradead.org
/* This version ported to the Linux-MTD system by dwmw2@infradead.org
* $Id: ftl.c,v 1.5
2 2003/08/11 09:00:44
dwmw2 Exp $
* $Id: ftl.c,v 1.5
3 2004/08/09 13:55:43
dwmw2 Exp $
*
*
* Fixes: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
* Fixes: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
* - fixes some leaks on failure in build_maps and ftl_notify_add, cleanups
* - fixes some leaks on failure in build_maps and ftl_notify_add, cleanups
...
@@ -1094,7 +1094,7 @@ struct mtd_blktrans_ops ftl_tr = {
...
@@ -1094,7 +1094,7 @@ struct mtd_blktrans_ops ftl_tr = {
int
init_ftl
(
void
)
int
init_ftl
(
void
)
{
{
DEBUG
(
0
,
"$Id: ftl.c,v 1.5
2 2003/08/11 09:00:44
dwmw2 Exp $
\n
"
);
DEBUG
(
0
,
"$Id: ftl.c,v 1.5
3 2004/08/09 13:55:43
dwmw2 Exp $
\n
"
);
return
register_mtd_blktrans
(
&
ftl_tr
);
return
register_mtd_blktrans
(
&
ftl_tr
);
}
}
...
...
drivers/mtd/inftlcore.c
View file @
1ad84001
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
* (c) 1999 Machine Vision Holdings, Inc.
* (c) 1999 Machine Vision Holdings, Inc.
* Author: David Woodhouse <dwmw2@infradead.org>
* Author: David Woodhouse <dwmw2@infradead.org>
*
*
* $Id: inftlcore.c,v 1.1
6 2004/07/12 12:34:5
8 dwmw2 Exp $
* $Id: inftlcore.c,v 1.1
7 2004/08/09 13:56:4
8 dwmw2 Exp $
*
*
* This program is free software; you can redistribute it and/or modify
* 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
* it under the terms of the GNU General Public License as published by
...
@@ -893,7 +893,7 @@ extern char inftlmountrev[];
...
@@ -893,7 +893,7 @@ extern char inftlmountrev[];
int
__init
init_inftl
(
void
)
int
__init
init_inftl
(
void
)
{
{
printk
(
KERN_INFO
"INFTL: inftlcore.c $Revision: 1.1
6
$, "
printk
(
KERN_INFO
"INFTL: inftlcore.c $Revision: 1.1
7
$, "
"inftlmount.c %s
\n
"
,
inftlmountrev
);
"inftlmount.c %s
\n
"
,
inftlmountrev
);
return
register_mtd_blktrans
(
&
inftl_tr
);
return
register_mtd_blktrans
(
&
inftl_tr
);
...
...
drivers/mtd/inftlmount.c
View file @
1ad84001
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* Author: Fabrice Bellard (fabrice.bellard@netgem.com)
* Author: Fabrice Bellard (fabrice.bellard@netgem.com)
* Copyright (C) 2000 Netgem S.A.
* Copyright (C) 2000 Netgem S.A.
*
*
* $Id: inftlmount.c,v 1.1
3 2004/06/28 16:06:36 dbrown
Exp $
* $Id: inftlmount.c,v 1.1
4 2004/08/09 13:57:42 dwmw2
Exp $
*
*
* This program is free software; you can redistribute it and/or modify
* 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
* it under the terms of the GNU General Public License as published by
...
@@ -41,7 +41,7 @@
...
@@ -41,7 +41,7 @@
#include <linux/mtd/inftl.h>
#include <linux/mtd/inftl.h>
#include <linux/mtd/compatmac.h>
#include <linux/mtd/compatmac.h>
char
inftlmountrev
[]
=
"$Revision: 1.1
3
$"
;
char
inftlmountrev
[]
=
"$Revision: 1.1
4
$"
;
/*
/*
* find_boot_record: Find the INFTL Media Header and its Spare copy which
* find_boot_record: Find the INFTL Media Header and its Spare copy which
...
...
drivers/mtd/maps/Kconfig
View file @
1ad84001
# drivers/mtd/maps/Kconfig
# drivers/mtd/maps/Kconfig
# $Id: Kconfig,v 1.
29 2004/07/15 15:29:17 dwmw2
Exp $
# $Id: Kconfig,v 1.
30 2004/07/21 00:16:14 jwboyer
Exp $
menu "Mapping drivers for chip access"
menu "Mapping drivers for chip access"
depends on MTD!=n
depends on MTD!=n
...
@@ -19,7 +19,8 @@ config MTD_PHYSMAP
...
@@ -19,7 +19,8 @@ config MTD_PHYSMAP
command set driver code to communicate with flash chips which
command set driver code to communicate with flash chips which
are mapped physically into the CPU's memory. You will need to
are mapped physically into the CPU's memory. You will need to
configure the physical address and size of the flash chips on
configure the physical address and size of the flash chips on
your particular board as well as the bus width.
your particular board as well as the bus width, either statically
with config options or at run-time.
config MTD_PHYSMAP_START
config MTD_PHYSMAP_START
hex "Physical start address of flash mapping"
hex "Physical start address of flash mapping"
...
@@ -30,6 +31,8 @@ config MTD_PHYSMAP_START
...
@@ -30,6 +31,8 @@ config MTD_PHYSMAP_START
are mapped on your particular target board. Refer to the
are mapped on your particular target board. Refer to the
memory map which should hopefully be in the documentation for
memory map which should hopefully be in the documentation for
your board.
your board.
Ignore this option if you use run-time physmap configuration
(i.e., run-time calling physmap_configure()).
config MTD_PHYSMAP_LEN
config MTD_PHYSMAP_LEN
hex "Physical length of flash mapping"
hex "Physical length of flash mapping"
...
@@ -42,9 +45,11 @@ config MTD_PHYSMAP_LEN
...
@@ -42,9 +45,11 @@ config MTD_PHYSMAP_LEN
than the total amount of flash present. Refer to the memory
than the total amount of flash present. Refer to the memory
map which should hopefully be in the documentation for your
map which should hopefully be in the documentation for your
board.
board.
Ignore this option if you use run-time physmap configuration
(i.e., run-time calling physmap_configure()).
config MTD_PHYSMAP_B
US
WIDTH
config MTD_PHYSMAP_B
ANK
WIDTH
int "B
us
width in octets"
int "B
ank
width in octets"
depends on MTD_PHYSMAP
depends on MTD_PHYSMAP
default "2"
default "2"
help
help
...
@@ -52,6 +57,8 @@ config MTD_PHYSMAP_BUSWIDTH
...
@@ -52,6 +57,8 @@ config MTD_PHYSMAP_BUSWIDTH
in octets. For example, if you have a data bus width of 32
in octets. For example, if you have a data bus width of 32
bits, you would set the bus width octect value to 4. This is
bits, you would set the bus width octect value to 4. This is
used internally by the CFI drivers.
used internally by the CFI drivers.
Ignore this option if you use run-time physmap configuration
(i.e., run-time calling physmap_configure()).
config MTD_SUN_UFLASH
config MTD_SUN_UFLASH
tristate "Sun Microsystems userflash support"
tristate "Sun Microsystems userflash support"
...
...
drivers/mtd/maps/ichxrom.c
View file @
1ad84001
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* ichxrom.c
* ichxrom.c
*
*
* Normal mappings of chips in physical memory
* Normal mappings of chips in physical memory
* $Id: ichxrom.c,v 1.
7 2004/07/14 18:14:09 eric
Exp $
* $Id: ichxrom.c,v 1.
8 2004/07/16 17:43:11 dwmw2
Exp $
*/
*/
#include <linux/module.h>
#include <linux/module.h>
...
...
drivers/mtd/maps/physmap.c
View file @
1ad84001
/*
/*
* $Id: physmap.c,v 1.3
3 2004/07/12 14:37:24 dwmw2
Exp $
* $Id: physmap.c,v 1.3
4 2004/07/21 00:16:14 jwboyer
Exp $
*
*
* Normal mappings of chips in physical memory
* Normal mappings of chips in physical memory
*
*
...
@@ -22,7 +22,12 @@
...
@@ -22,7 +22,12 @@
static
struct
mtd_info
*
mymtd
;
static
struct
mtd_info
*
mymtd
;
struct
map_info
physmap_map
=
{.
name
=
"phys_mapped_flash"
};
struct
map_info
physmap_map
=
{
.
name
=
"phys_mapped_flash"
,
.
phys
=
CONFIG_MTD_PHYSMAP_START
,
.
size
=
CONFIG_MTD_PHYSMAP_LEN
,
.
bankwidth
=
CONFIG_MTD_PHYSMAP_BANKWIDTH
,
};
#ifdef CONFIG_MTD_PARTITIONS
#ifdef CONFIG_MTD_PARTITIONS
static
struct
mtd_partition
*
mtd_parts
;
static
struct
mtd_partition
*
mtd_parts
;
...
...
drivers/mtd/mtdchar.c
View file @
1ad84001
/*
/*
* $Id: mtdchar.c,v 1.6
2 2004/07/14 13:20:42
dwmw2 Exp $
* $Id: mtdchar.c,v 1.6
4 2004/08/09 13:59:46
dwmw2 Exp $
*
*
* Character-device access to raw MTD devices.
* Character-device access to raw MTD devices.
*
*
...
@@ -262,7 +262,7 @@ static ssize_t mtd_write(struct file *file, const char __user *buf, size_t count
...
@@ -262,7 +262,7 @@ static ssize_t mtd_write(struct file *file, const char __user *buf, size_t count
IOCTL calls for getting device parameters.
IOCTL calls for getting device parameters.
======================================================================*/
======================================================================*/
static
void
mtd_erase_callback
(
struct
erase_info
*
instr
)
static
void
mtd
char
_erase_callback
(
struct
erase_info
*
instr
)
{
{
wake_up
((
wait_queue_head_t
*
)
instr
->
priv
);
wake_up
((
wait_queue_head_t
*
)
instr
->
priv
);
}
}
...
@@ -336,7 +336,7 @@ static int mtd_ioctl(struct inode *inode, struct file *file,
...
@@ -336,7 +336,7 @@ static int mtd_ioctl(struct inode *inode, struct file *file,
return
-
EFAULT
;
return
-
EFAULT
;
}
}
erase
->
mtd
=
mtd
;
erase
->
mtd
=
mtd
;
erase
->
callback
=
mtd_erase_callback
;
erase
->
callback
=
mtd
char
_erase_callback
;
erase
->
priv
=
(
unsigned
long
)
&
waitq
;
erase
->
priv
=
(
unsigned
long
)
&
waitq
;
/*
/*
...
@@ -511,7 +511,6 @@ static int mtd_ioctl(struct inode *inode, struct file *file,
...
@@ -511,7 +511,6 @@ static int mtd_ioctl(struct inode *inode, struct file *file,
}
}
default:
default:
DEBUG
(
MTD_DEBUG_LEVEL0
,
"Invalid ioctl %x (MEMGETINFO = %lx)
\n
"
,
cmd
,
(
unsigned
long
)
MEMGETINFO
);
ret
=
-
ENOTTY
;
ret
=
-
ENOTTY
;
}
}
...
...
drivers/mtd/mtdpart.c
View file @
1ad84001
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
*
*
* This code is GPL
* This code is GPL
*
*
* $Id: mtdpart.c,v 1.
46 2004/07/12 13:28:07
dwmw2 Exp $
* $Id: mtdpart.c,v 1.
50 2004/08/10 16:18:34
dwmw2 Exp $
*
*
* 02-21-2002 Thomas Gleixner <gleixner@autronix.de>
* 02-21-2002 Thomas Gleixner <gleixner@autronix.de>
* added support for read_oob, write_oob
* added support for read_oob, write_oob
...
@@ -246,10 +246,22 @@ static int part_erase (struct mtd_info *mtd, struct erase_info *instr)
...
@@ -246,10 +246,22 @@ static int part_erase (struct mtd_info *mtd, struct erase_info *instr)
return
-
EINVAL
;
return
-
EINVAL
;
instr
->
addr
+=
part
->
offset
;
instr
->
addr
+=
part
->
offset
;
ret
=
part
->
master
->
erase
(
part
->
master
,
instr
);
ret
=
part
->
master
->
erase
(
part
->
master
,
instr
);
return
ret
;
}
void
mtd_erase_callback
(
struct
erase_info
*
instr
)
{
if
(
instr
->
mtd
->
erase
==
part_erase
)
{
struct
mtd_part
*
part
=
PART
(
instr
->
mtd
);
if
(
instr
->
fail_addr
!=
0xffffffff
)
if
(
instr
->
fail_addr
!=
0xffffffff
)
instr
->
fail_addr
-=
part
->
offset
;
instr
->
fail_addr
-=
part
->
offset
;
return
ret
;
instr
->
addr
-=
part
->
offset
;
}
if
(
instr
->
callback
)
instr
->
callback
(
instr
);
}
}
EXPORT_SYMBOL_GPL
(
mtd_erase_callback
);
static
int
part_lock
(
struct
mtd_info
*
mtd
,
loff_t
ofs
,
size_t
len
)
static
int
part_lock
(
struct
mtd_info
*
mtd
,
loff_t
ofs
,
size_t
len
)
{
{
...
...
drivers/mtd/nand/Kconfig
View file @
1ad84001
# drivers/mtd/nand/Kconfig
# drivers/mtd/nand/Kconfig
# $Id: Kconfig,v 1.1
4 2004/07/13 00:14:35 dbrown
Exp $
# $Id: Kconfig,v 1.1
7 2004/08/10 14:24:07 dwmw2
Exp $
menu "NAND Flash Device Drivers"
menu "NAND Flash Device Drivers"
depends on MTD!=n
depends on MTD!=n
...
@@ -81,15 +81,51 @@ config MTD_NAND_PPCHAMELEONEVB
...
@@ -81,15 +81,51 @@ config MTD_NAND_PPCHAMELEONEVB
This enables the NAND flash driver on the PPChameleon EVB Board.
This enables the NAND flash driver on the PPChameleon EVB Board.
config MTD_NAND_DISKONCHIP
config MTD_NAND_DISKONCHIP
tristate "DiskOnChip 2000
and Millennium
(NAND reimplementation) (EXPERIMENTAL)"
tristate "DiskOnChip 2000
, Millennium and Millennium Plus
(NAND reimplementation) (EXPERIMENTAL)"
depends on MTD_NAND && EXPERIMENTAL
depends on MTD_NAND && EXPERIMENTAL
help
help
This is a reimplementation of M-Systems DiskOnChip 2000
and
This is a reimplementation of M-Systems DiskOnChip 2000
,
Millennium a
s a standard NAND device driver, as opposed to the
Millennium a
nd Millennium Plus as a standard NAND device driver,
earlier self-contained MTD device drivers.
as opposed to the
earlier self-contained MTD device drivers.
This should enable, among other things, proper JFFS2 operation on
This should enable, among other things, proper JFFS2 operation on
these devices.
these devices.
config MTD_NAND_DISKONCHIP_PROBE_ADVANCED
bool "Advanced detection options for DiskOnChip"
depends on MTD_NAND_DISKONCHIP
help
This option allows you to specify nonstandard address at which to
probe for a DiskOnChip, or to change the detection options. You
are unlikely to need any of this unless you are using LinuxBIOS.
Say 'N'.
config MTD_NAND_DISKONCHIP_PROBE_ADDRESS
hex "Physical address of DiskOnChip" if MTD_NAND_DISKONCHIP_PROBE_ADVANCED
depends on MTD_NAND_DISKONCHIP
default "0"
---help---
By default, the probe for DiskOnChip devices will look for a
DiskOnChip at every multiple of 0x2000 between 0xC8000 and 0xEE000.
This option allows you to specify a single address at which to probe
for the device, which is useful if you have other devices in that
range which get upset when they are probed.
(Note that on PowerPC, the normal probe will only check at
0xE4000000.)
Normally, you should leave this set to zero, to allow the probe at
the normal addresses.
config MTD_NAND_DISKONCHIP_PROBE_HIGH
bool "Probe high addresses"
depends on MTD_NAND_DISKONCHIP_PROBE_ADVANCED
help
By default, the probe for DiskOnChip devices will look for a
DiskOnChip at every multiple of 0x2000 between 0xC8000 and 0xEE000.
This option changes to make it probe between 0xFFFC8000 and
0xFFFEE000. Unless you are using LinuxBIOS, this is unlikely to be
useful to you. Say 'N'.
config MTD_NAND_DISKONCHIP_BBTWRITE
config MTD_NAND_DISKONCHIP_BBTWRITE
bool "Allow BBT writes on DiskOnChip Millennium and 2000TSOP"
bool "Allow BBT writes on DiskOnChip Millennium and 2000TSOP"
depends on MTD_NAND_DISKONCHIP
depends on MTD_NAND_DISKONCHIP
...
...
drivers/mtd/nand/diskonchip.c
View file @
1ad84001
...
@@ -2,12 +2,16 @@
...
@@ -2,12 +2,16 @@
* drivers/mtd/nand/diskonchip.c
* drivers/mtd/nand/diskonchip.c
*
*
* (C) 2003 Red Hat, Inc.
* (C) 2003 Red Hat, Inc.
* (C) 2004 Dan Brown <dan_brown@ieee.org>
* (C) 2004 Kalev Lember <kalev@smartlink.ee>
*
*
* Author: David Woodhouse <dwmw2@infradead.org>
* Author: David Woodhouse <dwmw2@infradead.org>
* Additional Diskonchip 2000 and Millennium support by Dan Brown <dan_brown@ieee.org>
* Diskonchip Millennium Plus support by Kalev Lember <kalev@smartlink.ee>
*
*
* Interface to generic NAND code for M-Systems DiskOnChip devices
* Interface to generic NAND code for M-Systems DiskOnChip devices
*
*
* $Id: diskonchip.c,v 1.
25 2004/07/16 13:54:27
dbrown Exp $
* $Id: diskonchip.c,v 1.
34 2004/08/09 19:41:12
dbrown Exp $
*/
*/
#include <linux/kernel.h>
#include <linux/kernel.h>
...
@@ -24,13 +28,13 @@
...
@@ -24,13 +28,13 @@
#include <linux/mtd/inftl.h>
#include <linux/mtd/inftl.h>
/* Where to look for the devices? */
/* Where to look for the devices? */
#ifndef CONFIG_MTD_D
OC
PROBE_ADDRESS
#ifndef CONFIG_MTD_D
ISKONCHIP_
PROBE_ADDRESS
#define CONFIG_MTD_D
OC
PROBE_ADDRESS 0
#define CONFIG_MTD_D
ISKONCHIP_
PROBE_ADDRESS 0
#endif
#endif
static
unsigned
long
__initdata
doc_locations
[]
=
{
static
unsigned
long
__initdata
doc_locations
[]
=
{
#if defined (__alpha__) || defined(__i386__) || defined(__x86_64__)
#if defined (__alpha__) || defined(__i386__) || defined(__x86_64__)
#ifdef CONFIG_MTD_D
OC
PROBE_HIGH
#ifdef CONFIG_MTD_D
ISKONCHIP_
PROBE_HIGH
0xfffc8000
,
0xfffca000
,
0xfffcc000
,
0xfffce000
,
0xfffc8000
,
0xfffca000
,
0xfffcc000
,
0xfffce000
,
0xfffd0000
,
0xfffd2000
,
0xfffd4000
,
0xfffd6000
,
0xfffd0000
,
0xfffd2000
,
0xfffd4000
,
0xfffd6000
,
0xfffd8000
,
0xfffda000
,
0xfffdc000
,
0xfffde000
,
0xfffd8000
,
0xfffda000
,
0xfffdc000
,
0xfffde000
,
...
@@ -84,6 +88,7 @@ static u_char empty_write_ecc[6] = { 0x4b, 0x00, 0xe2, 0x0e, 0x93, 0xf7 };
...
@@ -84,6 +88,7 @@ static u_char empty_write_ecc[6] = { 0x4b, 0x00, 0xe2, 0x0e, 0x93, 0xf7 };
#define INFTL_BBT_RESERVED_BLOCKS 4
#define INFTL_BBT_RESERVED_BLOCKS 4
#define DoC_is_MillenniumPlus(doc) ((doc)->ChipID == DOC_ChipID_DocMilPlus16 || (doc)->ChipID == DOC_ChipID_DocMilPlus32)
#define DoC_is_Millennium(doc) ((doc)->ChipID == DOC_ChipID_DocMil)
#define DoC_is_Millennium(doc) ((doc)->ChipID == DOC_ChipID_DocMil)
#define DoC_is_2000(doc) ((doc)->ChipID == DOC_ChipID_Doc2k)
#define DoC_is_2000(doc) ((doc)->ChipID == DOC_ChipID_Doc2k)
...
@@ -109,7 +114,7 @@ static int inftl_bbt_write=0;
...
@@ -109,7 +114,7 @@ static int inftl_bbt_write=0;
#endif
#endif
MODULE_PARM
(
inftl_bbt_write
,
"i"
);
MODULE_PARM
(
inftl_bbt_write
,
"i"
);
static
unsigned
long
doc_config_location
=
CONFIG_MTD_D
OC
PROBE_ADDRESS
;
static
unsigned
long
doc_config_location
=
CONFIG_MTD_D
ISKONCHIP_
PROBE_ADDRESS
;
MODULE_PARM
(
doc_config_location
,
"l"
);
MODULE_PARM
(
doc_config_location
,
"l"
);
MODULE_PARM_DESC
(
doc_config_location
,
"Physical memory address at which to probe for DiskOnChip"
);
MODULE_PARM_DESC
(
doc_config_location
,
"Physical memory address at which to probe for DiskOnChip"
);
...
@@ -121,11 +126,16 @@ static void DoC_Delay(struct doc_priv *doc, unsigned short cycles)
...
@@ -121,11 +126,16 @@ static void DoC_Delay(struct doc_priv *doc, unsigned short cycles)
for
(
i
=
0
;
i
<
cycles
;
i
++
)
{
for
(
i
=
0
;
i
<
cycles
;
i
++
)
{
if
(
DoC_is_Millennium
(
doc
))
if
(
DoC_is_Millennium
(
doc
))
dummy
=
ReadDOC
(
doc
->
virtadr
,
NOP
);
dummy
=
ReadDOC
(
doc
->
virtadr
,
NOP
);
else
if
(
DoC_is_MillenniumPlus
(
doc
))
dummy
=
ReadDOC
(
doc
->
virtadr
,
Mplus_NOP
);
else
else
dummy
=
ReadDOC
(
doc
->
virtadr
,
DOCStatus
);
dummy
=
ReadDOC
(
doc
->
virtadr
,
DOCStatus
);
}
}
}
}
#define CDSN_CTRL_FR_B_MASK (CDSN_CTRL_FR_B0 | CDSN_CTRL_FR_B1)
/* DOC_WaitReady: Wait for RDY line to be asserted by the flash chip */
/* DOC_WaitReady: Wait for RDY line to be asserted by the flash chip */
static
int
_DoC_WaitReady
(
struct
doc_priv
*
doc
)
static
int
_DoC_WaitReady
(
struct
doc_priv
*
doc
)
{
{
...
@@ -134,6 +144,16 @@ static int _DoC_WaitReady(struct doc_priv *doc)
...
@@ -134,6 +144,16 @@ static int _DoC_WaitReady(struct doc_priv *doc)
if
(
debug
)
printk
(
"_DoC_WaitReady...
\n
"
);
if
(
debug
)
printk
(
"_DoC_WaitReady...
\n
"
);
/* Out-of-line routine to wait for chip response */
/* Out-of-line routine to wait for chip response */
if
(
DoC_is_MillenniumPlus
(
doc
))
{
while
((
ReadDOC
(
docptr
,
Mplus_FlashControl
)
&
CDSN_CTRL_FR_B_MASK
)
!=
CDSN_CTRL_FR_B_MASK
)
{
if
(
time_after
(
jiffies
,
timeo
))
{
printk
(
"_DoC_WaitReady timed out.
\n
"
);
return
-
EIO
;
}
udelay
(
1
);
cond_resched
();
}
}
else
{
while
(
!
(
ReadDOC
(
docptr
,
CDSNControl
)
&
CDSN_CTRL_FR_B
))
{
while
(
!
(
ReadDOC
(
docptr
,
CDSNControl
)
&
CDSN_CTRL_FR_B
))
{
if
(
time_after
(
jiffies
,
timeo
))
{
if
(
time_after
(
jiffies
,
timeo
))
{
printk
(
"_DoC_WaitReady timed out.
\n
"
);
printk
(
"_DoC_WaitReady timed out.
\n
"
);
...
@@ -142,6 +162,7 @@ static int _DoC_WaitReady(struct doc_priv *doc)
...
@@ -142,6 +162,7 @@ static int _DoC_WaitReady(struct doc_priv *doc)
udelay
(
1
);
udelay
(
1
);
cond_resched
();
cond_resched
();
}
}
}
return
0
;
return
0
;
}
}
...
@@ -151,13 +172,21 @@ static inline int DoC_WaitReady(struct doc_priv *doc)
...
@@ -151,13 +172,21 @@ static inline int DoC_WaitReady(struct doc_priv *doc)
unsigned
long
docptr
=
doc
->
virtadr
;
unsigned
long
docptr
=
doc
->
virtadr
;
int
ret
=
0
;
int
ret
=
0
;
if
(
DoC_is_MillenniumPlus
(
doc
))
{
DoC_Delay
(
doc
,
4
);
DoC_Delay
(
doc
,
4
);
if
(
!
(
ReadDOC
(
docptr
,
CDSNControl
)
&
CDSN_CTRL_FR_B
)
)
if
((
ReadDOC
(
docptr
,
Mplus_FlashControl
)
&
CDSN_CTRL_FR_B_MASK
)
!=
CDSN_CTRL_FR_B_MASK
)
/* Call the out-of-line routine to wait */
/* Call the out-of-line routine to wait */
ret
=
_DoC_WaitReady
(
doc
);
ret
=
_DoC_WaitReady
(
doc
);
}
else
{
DoC_Delay
(
doc
,
4
);
if
(
!
(
ReadDOC
(
docptr
,
CDSNControl
)
&
CDSN_CTRL_FR_B
))
/* Call the out-of-line routine to wait */
ret
=
_DoC_WaitReady
(
doc
);
DoC_Delay
(
doc
,
2
);
DoC_Delay
(
doc
,
2
);
}
if
(
debug
)
printk
(
"DoC_WaitReady OK
\n
"
);
if
(
debug
)
printk
(
"DoC_WaitReady OK
\n
"
);
return
ret
;
return
ret
;
}
}
...
@@ -409,15 +438,126 @@ static int doc2001_verifybuf(struct mtd_info *mtd,
...
@@ -409,15 +438,126 @@ static int doc2001_verifybuf(struct mtd_info *mtd,
return
0
;
return
0
;
}
}
static
void
doc200x_select_chip
(
struct
mtd_info
*
mtd
,
int
chip
)
static
u_char
doc2001plus_read_byte
(
struct
mtd_info
*
mtd
)
{
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
unsigned
long
docptr
=
doc
->
virtadr
;
u_char
ret
;
ReadDOC
(
docptr
,
Mplus_ReadPipeInit
);
ReadDOC
(
docptr
,
Mplus_ReadPipeInit
);
ret
=
ReadDOC
(
docptr
,
Mplus_LastDataRead
);
if
(
debug
)
printk
(
"read_byte returns %02x
\n
"
,
ret
);
return
ret
;
}
static
void
doc2001plus_writebuf
(
struct
mtd_info
*
mtd
,
const
u_char
*
buf
,
int
len
)
{
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
unsigned
long
docptr
=
doc
->
virtadr
;
int
i
;
if
(
debug
)
printk
(
"writebuf of %d bytes: "
,
len
);
for
(
i
=
0
;
i
<
len
;
i
++
)
{
WriteDOC_
(
buf
[
i
],
docptr
,
DoC_Mil_CDSN_IO
+
i
);
if
(
debug
&&
i
<
16
)
printk
(
"%02x "
,
buf
[
i
]);
}
if
(
debug
)
printk
(
"
\n
"
);
}
static
void
doc2001plus_readbuf
(
struct
mtd_info
*
mtd
,
u_char
*
buf
,
int
len
)
{
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
unsigned
long
docptr
=
doc
->
virtadr
;
int
i
;
if
(
debug
)
printk
(
"readbuf of %d bytes: "
,
len
);
/* Start read pipeline */
ReadDOC
(
docptr
,
Mplus_ReadPipeInit
);
ReadDOC
(
docptr
,
Mplus_ReadPipeInit
);
for
(
i
=
0
;
i
<
len
-
2
;
i
++
)
{
buf
[
i
]
=
ReadDOC
(
docptr
,
Mil_CDSN_IO
);
if
(
debug
&&
i
<
16
)
printk
(
"%02x "
,
buf
[
i
]);
}
/* Terminate read pipeline */
buf
[
len
-
2
]
=
ReadDOC
(
docptr
,
Mplus_LastDataRead
);
if
(
debug
&&
i
<
16
)
printk
(
"%02x "
,
buf
[
len
-
2
]);
buf
[
len
-
1
]
=
ReadDOC
(
docptr
,
Mplus_LastDataRead
);
if
(
debug
&&
i
<
16
)
printk
(
"%02x "
,
buf
[
len
-
1
]);
if
(
debug
)
printk
(
"
\n
"
);
}
static
int
doc2001plus_verifybuf
(
struct
mtd_info
*
mtd
,
const
u_char
*
buf
,
int
len
)
{
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
unsigned
long
docptr
=
doc
->
virtadr
;
int
i
;
if
(
debug
)
printk
(
"verifybuf of %d bytes: "
,
len
);
/* Start read pipeline */
ReadDOC
(
docptr
,
Mplus_ReadPipeInit
);
ReadDOC
(
docptr
,
Mplus_ReadPipeInit
);
for
(
i
=
0
;
i
<
len
-
2
;
i
++
)
if
(
buf
[
i
]
!=
ReadDOC
(
docptr
,
Mil_CDSN_IO
))
{
ReadDOC
(
docptr
,
Mplus_LastDataRead
);
ReadDOC
(
docptr
,
Mplus_LastDataRead
);
return
i
;
}
if
(
buf
[
len
-
2
]
!=
ReadDOC
(
docptr
,
Mplus_LastDataRead
))
return
len
-
2
;
if
(
buf
[
len
-
1
]
!=
ReadDOC
(
docptr
,
Mplus_LastDataRead
))
return
len
-
1
;
return
0
;
}
static
void
doc2001plus_select_chip
(
struct
mtd_info
*
mtd
,
int
chip
)
{
{
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
unsigned
long
docptr
=
doc
->
virtadr
;
unsigned
long
docptr
=
doc
->
virtadr
;
int
floor
=
0
;
int
floor
=
0
;
/* 11.4.4 -- deassert CE before changing chip */
if
(
debug
)
printk
(
"select chip (%d)
\n
"
,
chip
);
doc200x_hwcontrol
(
mtd
,
NAND_CTL_CLRNCE
);
if
(
chip
==
-
1
)
{
/* Disable flash internally */
WriteDOC
(
0
,
docptr
,
Mplus_FlashSelect
);
return
;
}
floor
=
chip
/
doc
->
chips_per_floor
;
chip
-=
(
floor
*
doc
->
chips_per_floor
);
/* Assert ChipEnable and deassert WriteProtect */
WriteDOC
((
DOC_FLASH_CE
),
docptr
,
Mplus_FlashSelect
);
this
->
cmdfunc
(
mtd
,
NAND_CMD_RESET
,
-
1
,
-
1
);
doc
->
curchip
=
chip
;
doc
->
curfloor
=
floor
;
}
static
void
doc200x_select_chip
(
struct
mtd_info
*
mtd
,
int
chip
)
{
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
unsigned
long
docptr
=
doc
->
virtadr
;
int
floor
=
0
;
if
(
debug
)
printk
(
"select chip (%d)
\n
"
,
chip
);
if
(
debug
)
printk
(
"select chip (%d)
\n
"
,
chip
);
...
@@ -427,6 +567,9 @@ static void doc200x_select_chip(struct mtd_info *mtd, int chip)
...
@@ -427,6 +567,9 @@ static void doc200x_select_chip(struct mtd_info *mtd, int chip)
floor
=
chip
/
doc
->
chips_per_floor
;
floor
=
chip
/
doc
->
chips_per_floor
;
chip
-=
(
floor
*
doc
->
chips_per_floor
);
chip
-=
(
floor
*
doc
->
chips_per_floor
);
/* 11.4.4 -- deassert CE before changing chip */
doc200x_hwcontrol
(
mtd
,
NAND_CTL_CLRNCE
);
WriteDOC
(
floor
,
docptr
,
FloorSelect
);
WriteDOC
(
floor
,
docptr
,
FloorSelect
);
WriteDOC
(
chip
,
docptr
,
CDSNDeviceSelect
);
WriteDOC
(
chip
,
docptr
,
CDSNDeviceSelect
);
...
@@ -474,12 +617,127 @@ static void doc200x_hwcontrol(struct mtd_info *mtd, int cmd)
...
@@ -474,12 +617,127 @@ static void doc200x_hwcontrol(struct mtd_info *mtd, int cmd)
DoC_Delay
(
doc
,
4
);
DoC_Delay
(
doc
,
4
);
}
}
static
void
doc2001plus_command
(
struct
mtd_info
*
mtd
,
unsigned
command
,
int
column
,
int
page_addr
)
{
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
unsigned
long
docptr
=
doc
->
virtadr
;
/*
* Must terminate write pipeline before sending any commands
* to the device.
*/
if
(
command
==
NAND_CMD_PAGEPROG
)
{
WriteDOC
(
0x00
,
docptr
,
Mplus_WritePipeTerm
);
WriteDOC
(
0x00
,
docptr
,
Mplus_WritePipeTerm
);
}
/*
* Write out the command to the device.
*/
if
(
command
==
NAND_CMD_SEQIN
)
{
int
readcmd
;
if
(
column
>=
mtd
->
oobblock
)
{
/* OOB area */
column
-=
mtd
->
oobblock
;
readcmd
=
NAND_CMD_READOOB
;
}
else
if
(
column
<
256
)
{
/* First 256 bytes --> READ0 */
readcmd
=
NAND_CMD_READ0
;
}
else
{
column
-=
256
;
readcmd
=
NAND_CMD_READ1
;
}
WriteDOC
(
readcmd
,
docptr
,
Mplus_FlashCmd
);
}
WriteDOC
(
command
,
docptr
,
Mplus_FlashCmd
);
WriteDOC
(
0
,
docptr
,
Mplus_WritePipeTerm
);
WriteDOC
(
0
,
docptr
,
Mplus_WritePipeTerm
);
if
(
column
!=
-
1
||
page_addr
!=
-
1
)
{
/* Serially input address */
if
(
column
!=
-
1
)
{
/* Adjust columns for 16 bit buswidth */
if
(
this
->
options
&
NAND_BUSWIDTH_16
)
column
>>=
1
;
WriteDOC
(
column
,
docptr
,
Mplus_FlashAddress
);
}
if
(
page_addr
!=
-
1
)
{
WriteDOC
((
unsigned
char
)
(
page_addr
&
0xff
),
docptr
,
Mplus_FlashAddress
);
WriteDOC
((
unsigned
char
)
((
page_addr
>>
8
)
&
0xff
),
docptr
,
Mplus_FlashAddress
);
/* One more address cycle for higher density devices */
if
(
this
->
chipsize
&
0x0c000000
)
{
WriteDOC
((
unsigned
char
)
((
page_addr
>>
16
)
&
0x0f
),
docptr
,
Mplus_FlashAddress
);
printk
(
"high density
\n
"
);
}
}
WriteDOC
(
0
,
docptr
,
Mplus_WritePipeTerm
);
WriteDOC
(
0
,
docptr
,
Mplus_WritePipeTerm
);
/* deassert ALE */
if
(
command
==
NAND_CMD_READ0
||
command
==
NAND_CMD_READ1
||
command
==
NAND_CMD_READOOB
||
command
==
NAND_CMD_READID
)
WriteDOC
(
0
,
docptr
,
Mplus_FlashControl
);
}
/*
* program and erase have their own busy handlers
* status and sequential in needs no delay
*/
switch
(
command
)
{
case
NAND_CMD_PAGEPROG
:
case
NAND_CMD_ERASE1
:
case
NAND_CMD_ERASE2
:
case
NAND_CMD_SEQIN
:
case
NAND_CMD_STATUS
:
return
;
case
NAND_CMD_RESET
:
if
(
this
->
dev_ready
)
break
;
udelay
(
this
->
chip_delay
);
WriteDOC
(
NAND_CMD_STATUS
,
docptr
,
Mplus_FlashCmd
);
WriteDOC
(
0
,
docptr
,
Mplus_WritePipeTerm
);
WriteDOC
(
0
,
docptr
,
Mplus_WritePipeTerm
);
while
(
!
(
this
->
read_byte
(
mtd
)
&
0x40
));
return
;
/* This applies to read commands */
default:
/*
* If we don't have access to the busy pin, we apply the given
* command delay
*/
if
(
!
this
->
dev_ready
)
{
udelay
(
this
->
chip_delay
);
return
;
}
}
/* Apply this short delay always to ensure that we do wait tWB in
* any case on any machine. */
ndelay
(
100
);
/* wait until command is processed */
while
(
!
this
->
dev_ready
(
mtd
));
}
static
int
doc200x_dev_ready
(
struct
mtd_info
*
mtd
)
static
int
doc200x_dev_ready
(
struct
mtd_info
*
mtd
)
{
{
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
unsigned
long
docptr
=
doc
->
virtadr
;
unsigned
long
docptr
=
doc
->
virtadr
;
if
(
DoC_is_MillenniumPlus
(
doc
))
{
/* 11.4.2 -- must NOP four times before checking FR/B# */
DoC_Delay
(
doc
,
4
);
if
((
ReadDOC
(
docptr
,
Mplus_FlashControl
)
&
CDSN_CTRL_FR_B_MASK
)
!=
CDSN_CTRL_FR_B_MASK
)
{
if
(
debug
)
printk
(
"not ready
\n
"
);
return
0
;
}
if
(
debug
)
printk
(
"was ready
\n
"
);
return
1
;
}
else
{
/* 11.4.2 -- must NOP four times before checking FR/B# */
/* 11.4.2 -- must NOP four times before checking FR/B# */
DoC_Delay
(
doc
,
4
);
DoC_Delay
(
doc
,
4
);
if
(
!
(
ReadDOC
(
docptr
,
CDSNControl
)
&
CDSN_CTRL_FR_B
))
{
if
(
!
(
ReadDOC
(
docptr
,
CDSNControl
)
&
CDSN_CTRL_FR_B
))
{
...
@@ -491,6 +749,7 @@ static int doc200x_dev_ready(struct mtd_info *mtd)
...
@@ -491,6 +749,7 @@ static int doc200x_dev_ready(struct mtd_info *mtd)
DoC_Delay
(
doc
,
2
);
DoC_Delay
(
doc
,
2
);
if
(
debug
)
printk
(
"was ready
\n
"
);
if
(
debug
)
printk
(
"was ready
\n
"
);
return
1
;
return
1
;
}
}
}
static
int
doc200x_block_bad
(
struct
mtd_info
*
mtd
,
loff_t
ofs
,
int
getchip
)
static
int
doc200x_block_bad
(
struct
mtd_info
*
mtd
,
loff_t
ofs
,
int
getchip
)
...
@@ -519,6 +778,25 @@ static void doc200x_enable_hwecc(struct mtd_info *mtd, int mode)
...
@@ -519,6 +778,25 @@ static void doc200x_enable_hwecc(struct mtd_info *mtd, int mode)
}
}
}
}
static
void
doc2001plus_enable_hwecc
(
struct
mtd_info
*
mtd
,
int
mode
)
{
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
unsigned
long
docptr
=
doc
->
virtadr
;
/* Prime the ECC engine */
switch
(
mode
)
{
case
NAND_ECC_READ
:
WriteDOC
(
DOC_ECC_RESET
,
docptr
,
Mplus_ECCConf
);
WriteDOC
(
DOC_ECC_EN
,
docptr
,
Mplus_ECCConf
);
break
;
case
NAND_ECC_WRITE
:
WriteDOC
(
DOC_ECC_RESET
,
docptr
,
Mplus_ECCConf
);
WriteDOC
(
DOC_ECC_EN
|
DOC_ECC_RW
,
docptr
,
Mplus_ECCConf
);
break
;
}
}
/* This code is only called on write */
/* This code is only called on write */
static
int
doc200x_calculate_ecc
(
struct
mtd_info
*
mtd
,
const
u_char
*
dat
,
static
int
doc200x_calculate_ecc
(
struct
mtd_info
*
mtd
,
const
u_char
*
dat
,
unsigned
char
*
ecc_code
)
unsigned
char
*
ecc_code
)
...
@@ -536,6 +814,10 @@ static int doc200x_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
...
@@ -536,6 +814,10 @@ static int doc200x_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
WriteDOC
(
0
,
docptr
,
2
k_CDSN_IO
);
WriteDOC
(
0
,
docptr
,
2
k_CDSN_IO
);
WriteDOC
(
0
,
docptr
,
2
k_CDSN_IO
);
WriteDOC
(
0
,
docptr
,
2
k_CDSN_IO
);
WriteDOC
(
doc
->
CDSNControl
,
docptr
,
CDSNControl
);
WriteDOC
(
doc
->
CDSNControl
,
docptr
,
CDSNControl
);
}
else
if
(
DoC_is_MillenniumPlus
(
doc
))
{
WriteDOC
(
0
,
docptr
,
Mplus_NOP
);
WriteDOC
(
0
,
docptr
,
Mplus_NOP
);
WriteDOC
(
0
,
docptr
,
Mplus_NOP
);
}
else
{
}
else
{
WriteDOC
(
0
,
docptr
,
NOP
);
WriteDOC
(
0
,
docptr
,
NOP
);
WriteDOC
(
0
,
docptr
,
NOP
);
WriteDOC
(
0
,
docptr
,
NOP
);
...
@@ -543,10 +825,16 @@ static int doc200x_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
...
@@ -543,10 +825,16 @@ static int doc200x_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
}
}
for
(
i
=
0
;
i
<
6
;
i
++
)
{
for
(
i
=
0
;
i
<
6
;
i
++
)
{
if
(
DoC_is_MillenniumPlus
(
doc
))
ecc_code
[
i
]
=
ReadDOC_
(
docptr
,
DoC_Mplus_ECCSyndrome0
+
i
);
else
ecc_code
[
i
]
=
ReadDOC_
(
docptr
,
DoC_ECCSyndrome0
+
i
);
ecc_code
[
i
]
=
ReadDOC_
(
docptr
,
DoC_ECCSyndrome0
+
i
);
if
(
ecc_code
[
i
]
!=
empty_write_ecc
[
i
])
if
(
ecc_code
[
i
]
!=
empty_write_ecc
[
i
])
emptymatch
=
0
;
emptymatch
=
0
;
}
}
if
(
DoC_is_MillenniumPlus
(
doc
))
WriteDOC
(
DOC_ECC_DIS
,
docptr
,
Mplus_ECCConf
);
else
WriteDOC
(
DOC_ECC_DIS
,
docptr
,
ECCConf
);
WriteDOC
(
DOC_ECC_DIS
,
docptr
,
ECCConf
);
#if 0
#if 0
/* If emptymatch=1, we might have an all-0xff data buffer. Check. */
/* If emptymatch=1, we might have an all-0xff data buffer. Check. */
...
@@ -582,6 +870,10 @@ static int doc200x_correct_data(struct mtd_info *mtd, u_char *dat, u_char *read_
...
@@ -582,6 +870,10 @@ static int doc200x_correct_data(struct mtd_info *mtd, u_char *dat, u_char *read_
dummy
=
ReadDOC
(
docptr
,
2
k_ECCStatus
);
dummy
=
ReadDOC
(
docptr
,
2
k_ECCStatus
);
dummy
=
ReadDOC
(
docptr
,
2
k_ECCStatus
);
dummy
=
ReadDOC
(
docptr
,
2
k_ECCStatus
);
dummy
=
ReadDOC
(
docptr
,
2
k_ECCStatus
);
dummy
=
ReadDOC
(
docptr
,
2
k_ECCStatus
);
}
else
if
(
DoC_is_MillenniumPlus
(
doc
))
{
dummy
=
ReadDOC
(
docptr
,
Mplus_ECCConf
);
dummy
=
ReadDOC
(
docptr
,
Mplus_ECCConf
);
dummy
=
ReadDOC
(
docptr
,
Mplus_ECCConf
);
}
else
{
}
else
{
dummy
=
ReadDOC
(
docptr
,
ECCConf
);
dummy
=
ReadDOC
(
docptr
,
ECCConf
);
dummy
=
ReadDOC
(
docptr
,
ECCConf
);
dummy
=
ReadDOC
(
docptr
,
ECCConf
);
...
@@ -591,6 +883,9 @@ static int doc200x_correct_data(struct mtd_info *mtd, u_char *dat, u_char *read_
...
@@ -591,6 +883,9 @@ static int doc200x_correct_data(struct mtd_info *mtd, u_char *dat, u_char *read_
/* Error occured ? */
/* Error occured ? */
if
(
dummy
&
0x80
)
{
if
(
dummy
&
0x80
)
{
for
(
i
=
0
;
i
<
6
;
i
++
)
{
for
(
i
=
0
;
i
<
6
;
i
++
)
{
if
(
DoC_is_MillenniumPlus
(
doc
))
calc_ecc
[
i
]
=
ReadDOC_
(
docptr
,
DoC_Mplus_ECCSyndrome0
+
i
);
else
calc_ecc
[
i
]
=
ReadDOC_
(
docptr
,
DoC_ECCSyndrome0
+
i
);
calc_ecc
[
i
]
=
ReadDOC_
(
docptr
,
DoC_ECCSyndrome0
+
i
);
if
(
calc_ecc
[
i
]
!=
empty_read_syndrome
[
i
])
if
(
calc_ecc
[
i
]
!=
empty_read_syndrome
[
i
])
emptymatch
=
0
;
emptymatch
=
0
;
...
@@ -623,6 +918,9 @@ static int doc200x_correct_data(struct mtd_info *mtd, u_char *dat, u_char *read_
...
@@ -623,6 +918,9 @@ static int doc200x_correct_data(struct mtd_info *mtd, u_char *dat, u_char *read_
if
(
ret
>
0
)
if
(
ret
>
0
)
printk
(
KERN_ERR
"doc200x_correct_data corrected %d errors
\n
"
,
ret
);
printk
(
KERN_ERR
"doc200x_correct_data corrected %d errors
\n
"
,
ret
);
}
}
if
(
DoC_is_MillenniumPlus
(
doc
))
WriteDOC
(
DOC_ECC_DIS
,
docptr
,
Mplus_ECCConf
);
else
WriteDOC
(
DOC_ECC_DIS
,
docptr
,
ECCConf
);
WriteDOC
(
DOC_ECC_DIS
,
docptr
,
ECCConf
);
if
(
no_ecc_failures
&&
(
ret
==
-
1
))
{
if
(
no_ecc_failures
&&
(
ret
==
-
1
))
{
printk
(
KERN_ERR
"suppressing ECC failure
\n
"
);
printk
(
KERN_ERR
"suppressing ECC failure
\n
"
);
...
@@ -694,13 +992,20 @@ static inline int __init nftl_partscan(struct mtd_info *mtd,
...
@@ -694,13 +992,20 @@ static inline int __init nftl_partscan(struct mtd_info *mtd,
{
{
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
u_char
*
buf
=
this
->
data_buf
;
int
ret
=
0
;
struct
NFTLMediaHeader
*
mh
=
(
struct
NFTLMediaHeader
*
)
buf
;
u_char
*
buf
;
struct
NFTLMediaHeader
*
mh
;
const
unsigned
psize
=
1
<<
this
->
page_shift
;
const
unsigned
psize
=
1
<<
this
->
page_shift
;
unsigned
blocks
,
maxblocks
;
unsigned
blocks
,
maxblocks
;
int
offs
,
numheaders
;
int
offs
,
numheaders
;
if
(
!
(
numheaders
=
find_media_headers
(
mtd
,
buf
,
"ANAND"
,
1
)))
return
0
;
buf
=
kmalloc
(
mtd
->
oobblock
,
GFP_KERNEL
);
if
(
!
buf
)
{
printk
(
KERN_ERR
"DiskOnChip mediaheader kmalloc failed!
\n
"
);
return
0
;
}
if
(
!
(
numheaders
=
find_media_headers
(
mtd
,
buf
,
"ANAND"
,
1
)))
goto
out
;
mh
=
(
struct
NFTLMediaHeader
*
)
buf
;
//#ifdef CONFIG_MTD_DEBUG_VERBOSE
//#ifdef CONFIG_MTD_DEBUG_VERBOSE
// if (CONFIG_MTD_DEBUG_VERBOSE >= 2)
// if (CONFIG_MTD_DEBUG_VERBOSE >= 2)
...
@@ -747,7 +1052,7 @@ static inline int __init nftl_partscan(struct mtd_info *mtd,
...
@@ -747,7 +1052,7 @@ static inline int __init nftl_partscan(struct mtd_info *mtd,
if
(
blocks
>
maxblocks
)
{
if
(
blocks
>
maxblocks
)
{
printk
(
KERN_ERR
"UnitSizeFactor of 0x%02x is inconsistent with device size. Aborting.
\n
"
,
mh
->
UnitSizeFactor
);
printk
(
KERN_ERR
"UnitSizeFactor of 0x%02x is inconsistent with device size. Aborting.
\n
"
,
mh
->
UnitSizeFactor
);
return
0
;
goto
out
;
}
}
/* Skip past the media headers. */
/* Skip past the media headers. */
...
@@ -768,9 +1073,13 @@ static inline int __init nftl_partscan(struct mtd_info *mtd,
...
@@ -768,9 +1073,13 @@ static inline int __init nftl_partscan(struct mtd_info *mtd,
parts
[
1
].
name
=
" DiskOnChip Remainder partition"
;
parts
[
1
].
name
=
" DiskOnChip Remainder partition"
;
parts
[
1
].
offset
=
offs
;
parts
[
1
].
offset
=
offs
;
parts
[
1
].
size
=
mtd
->
size
-
offs
;
parts
[
1
].
size
=
mtd
->
size
-
offs
;
return
2
;
ret
=
2
;
goto
out
;
}
}
return
1
;
ret
=
1
;
out:
kfree
(
buf
);
return
ret
;
}
}
/* This is a stripped-down copy of the code in inftlmount.c */
/* This is a stripped-down copy of the code in inftlmount.c */
...
@@ -779,8 +1088,9 @@ static inline int __init inftl_partscan(struct mtd_info *mtd,
...
@@ -779,8 +1088,9 @@ static inline int __init inftl_partscan(struct mtd_info *mtd,
{
{
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
u_char
*
buf
=
this
->
data_buf
;
int
ret
=
0
;
struct
INFTLMediaHeader
*
mh
=
(
struct
INFTLMediaHeader
*
)
buf
;
u_char
*
buf
;
struct
INFTLMediaHeader
*
mh
;
struct
INFTLPartition
*
ip
;
struct
INFTLPartition
*
ip
;
int
numparts
=
0
;
int
numparts
=
0
;
int
blocks
;
int
blocks
;
...
@@ -791,8 +1101,15 @@ static inline int __init inftl_partscan(struct mtd_info *mtd,
...
@@ -791,8 +1101,15 @@ static inline int __init inftl_partscan(struct mtd_info *mtd,
if
(
inftl_bbt_write
)
if
(
inftl_bbt_write
)
end
-=
(
INFTL_BBT_RESERVED_BLOCKS
<<
this
->
phys_erase_shift
);
end
-=
(
INFTL_BBT_RESERVED_BLOCKS
<<
this
->
phys_erase_shift
);
if
(
!
find_media_headers
(
mtd
,
buf
,
"BNAND"
,
0
))
return
0
;
buf
=
kmalloc
(
mtd
->
oobblock
,
GFP_KERNEL
);
if
(
!
buf
)
{
printk
(
KERN_ERR
"DiskOnChip mediaheader kmalloc failed!
\n
"
);
return
0
;
}
if
(
!
find_media_headers
(
mtd
,
buf
,
"BNAND"
,
0
))
goto
out
;
doc
->
mh1_page
=
doc
->
mh0_page
+
(
4096
>>
this
->
page_shift
);
doc
->
mh1_page
=
doc
->
mh0_page
+
(
4096
>>
this
->
page_shift
);
mh
=
(
struct
INFTLMediaHeader
*
)
buf
;
mh
->
NoOfBootImageBlocks
=
le32_to_cpu
(
mh
->
NoOfBootImageBlocks
);
mh
->
NoOfBootImageBlocks
=
le32_to_cpu
(
mh
->
NoOfBootImageBlocks
);
mh
->
NoOfBinaryPartitions
=
le32_to_cpu
(
mh
->
NoOfBinaryPartitions
);
mh
->
NoOfBinaryPartitions
=
le32_to_cpu
(
mh
->
NoOfBinaryPartitions
);
...
@@ -809,13 +1126,17 @@ static inline int __init inftl_partscan(struct mtd_info *mtd,
...
@@ -809,13 +1126,17 @@ static inline int __init inftl_partscan(struct mtd_info *mtd,
" NoOfBDTLPartitions = %d
\n
"
" NoOfBDTLPartitions = %d
\n
"
" BlockMultiplerBits = %d
\n
"
" BlockMultiplerBits = %d
\n
"
" FormatFlgs = %d
\n
"
" FormatFlgs = %d
\n
"
" OsakVersion =
0x%x
\n
"
" OsakVersion =
%d.%d.%d.%d
\n
"
" PercentUsed = %d
\n
"
,
" PercentUsed = %d
\n
"
,
mh
->
bootRecordID
,
mh
->
NoOfBootImageBlocks
,
mh
->
bootRecordID
,
mh
->
NoOfBootImageBlocks
,
mh
->
NoOfBinaryPartitions
,
mh
->
NoOfBinaryPartitions
,
mh
->
NoOfBDTLPartitions
,
mh
->
NoOfBDTLPartitions
,
mh
->
BlockMultiplierBits
,
mh
->
FormatFlags
,
mh
->
BlockMultiplierBits
,
mh
->
FormatFlags
,
mh
->
OsakVersion
,
mh
->
PercentUsed
);
((
unsigned
char
*
)
&
mh
->
OsakVersion
)[
0
]
&
0xf
,
((
unsigned
char
*
)
&
mh
->
OsakVersion
)[
1
]
&
0xf
,
((
unsigned
char
*
)
&
mh
->
OsakVersion
)[
2
]
&
0xf
,
((
unsigned
char
*
)
&
mh
->
OsakVersion
)[
3
]
&
0xf
,
mh
->
PercentUsed
);
//#endif
//#endif
vshift
=
this
->
phys_erase_shift
+
mh
->
BlockMultiplierBits
;
vshift
=
this
->
phys_erase_shift
+
mh
->
BlockMultiplierBits
;
...
@@ -823,13 +1144,13 @@ static inline int __init inftl_partscan(struct mtd_info *mtd,
...
@@ -823,13 +1144,13 @@ static inline int __init inftl_partscan(struct mtd_info *mtd,
blocks
=
mtd
->
size
>>
vshift
;
blocks
=
mtd
->
size
>>
vshift
;
if
(
blocks
>
32768
)
{
if
(
blocks
>
32768
)
{
printk
(
KERN_ERR
"BlockMultiplierBits=%d is inconsistent with device size. Aborting.
\n
"
,
mh
->
BlockMultiplierBits
);
printk
(
KERN_ERR
"BlockMultiplierBits=%d is inconsistent with device size. Aborting.
\n
"
,
mh
->
BlockMultiplierBits
);
return
0
;
goto
out
;
}
}
blocks
=
doc
->
chips_per_floor
<<
(
this
->
chip_shift
-
this
->
phys_erase_shift
);
blocks
=
doc
->
chips_per_floor
<<
(
this
->
chip_shift
-
this
->
phys_erase_shift
);
if
(
inftl_bbt_write
&&
(
blocks
>
mtd
->
erasesize
))
{
if
(
inftl_bbt_write
&&
(
blocks
>
mtd
->
erasesize
))
{
printk
(
KERN_ERR
"Writeable BBTs spanning more than one erase block are not yet supported. FIX ME!
\n
"
);
printk
(
KERN_ERR
"Writeable BBTs spanning more than one erase block are not yet supported. FIX ME!
\n
"
);
return
0
;
goto
out
;
}
}
/* Scan the partitions */
/* Scan the partitions */
...
@@ -881,7 +1202,10 @@ static inline int __init inftl_partscan(struct mtd_info *mtd,
...
@@ -881,7 +1202,10 @@ static inline int __init inftl_partscan(struct mtd_info *mtd,
parts
[
numparts
].
size
=
end
-
parts
[
numparts
].
offset
;
parts
[
numparts
].
size
=
end
-
parts
[
numparts
].
offset
;
numparts
++
;
numparts
++
;
}
}
return
numparts
;
ret
=
numparts
;
out:
kfree
(
buf
);
return
ret
;
}
}
static
int
__init
nftl_scan_bbt
(
struct
mtd_info
*
mtd
)
static
int
__init
nftl_scan_bbt
(
struct
mtd_info
*
mtd
)
...
@@ -916,8 +1240,9 @@ static int __init nftl_scan_bbt(struct mtd_info *mtd)
...
@@ -916,8 +1240,9 @@ static int __init nftl_scan_bbt(struct mtd_info *mtd)
if
((
ret
=
nand_scan_bbt
(
mtd
,
NULL
)))
if
((
ret
=
nand_scan_bbt
(
mtd
,
NULL
)))
return
ret
;
return
ret
;
add_mtd_device
(
mtd
);
add_mtd_device
(
mtd
);
#if defined(CONFIG_MTD_PARTITIONS) || defined(CONFIG_MTD_PARTITIONS_MODULE)
#ifdef CONFIG_MTD_PARTITIONS
if
(
!
no_autopart
)
add_mtd_partitions
(
mtd
,
parts
,
numparts
);
if
(
!
no_autopart
)
add_mtd_partitions
(
mtd
,
parts
,
numparts
);
#endif
#endif
return
0
;
return
0
;
}
}
...
@@ -934,6 +1259,13 @@ static int __init inftl_scan_bbt(struct mtd_info *mtd)
...
@@ -934,6 +1259,13 @@ static int __init inftl_scan_bbt(struct mtd_info *mtd)
return
-
EIO
;
return
-
EIO
;
}
}
if
(
DoC_is_MillenniumPlus
(
doc
))
{
this
->
bbt_td
->
options
=
NAND_BBT_2BIT
|
NAND_BBT_ABSPAGE
;
if
(
inftl_bbt_write
)
this
->
bbt_td
->
options
|=
NAND_BBT_WRITE
;
this
->
bbt_td
->
pages
[
0
]
=
2
;
this
->
bbt_md
=
NULL
;
}
else
{
this
->
bbt_td
->
options
=
NAND_BBT_LASTBLOCK
|
NAND_BBT_8BIT
|
this
->
bbt_td
->
options
=
NAND_BBT_LASTBLOCK
|
NAND_BBT_8BIT
|
NAND_BBT_VERSION
;
NAND_BBT_VERSION
;
if
(
inftl_bbt_write
)
if
(
inftl_bbt_write
)
...
@@ -955,6 +1287,7 @@ static int __init inftl_scan_bbt(struct mtd_info *mtd)
...
@@ -955,6 +1287,7 @@ static int __init inftl_scan_bbt(struct mtd_info *mtd)
this
->
bbt_md
->
maxblocks
=
INFTL_BBT_RESERVED_BLOCKS
;
this
->
bbt_md
->
maxblocks
=
INFTL_BBT_RESERVED_BLOCKS
;
this
->
bbt_md
->
reserved_block_code
=
0x01
;
this
->
bbt_md
->
reserved_block_code
=
0x01
;
this
->
bbt_md
->
pattern
=
"TBB_SYSM"
;
this
->
bbt_md
->
pattern
=
"TBB_SYSM"
;
}
/* It's safe to set bd=NULL below because NAND_BBT_CREATE is not set.
/* It's safe to set bd=NULL below because NAND_BBT_CREATE is not set.
At least as nand_bbt.c is currently written. */
At least as nand_bbt.c is currently written. */
...
@@ -967,8 +1300,9 @@ static int __init inftl_scan_bbt(struct mtd_info *mtd)
...
@@ -967,8 +1300,9 @@ static int __init inftl_scan_bbt(struct mtd_info *mtd)
autopartitioning, but I want to give it more thought. */
autopartitioning, but I want to give it more thought. */
if
(
!
numparts
)
return
-
EIO
;
if
(
!
numparts
)
return
-
EIO
;
add_mtd_device
(
mtd
);
add_mtd_device
(
mtd
);
#if defined(CONFIG_MTD_PARTITIONS) || defined(CONFIG_MTD_PARTITIONS_MODULE)
#ifdef CONFIG_MTD_PARTITIONS
if
(
!
no_autopart
)
add_mtd_partitions
(
mtd
,
parts
,
numparts
);
if
(
!
no_autopart
)
add_mtd_partitions
(
mtd
,
parts
,
numparts
);
#endif
#endif
return
0
;
return
0
;
}
}
...
@@ -1023,6 +1357,28 @@ static inline int __init doc2001_init(struct mtd_info *mtd)
...
@@ -1023,6 +1357,28 @@ static inline int __init doc2001_init(struct mtd_info *mtd)
}
}
}
}
static
inline
int
__init
doc2001plus_init
(
struct
mtd_info
*
mtd
)
{
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
doc_priv
*
doc
=
(
void
*
)
this
->
priv
;
this
->
write_byte
=
NULL
;
this
->
read_byte
=
doc2001plus_read_byte
;
this
->
write_buf
=
doc2001plus_writebuf
;
this
->
read_buf
=
doc2001plus_readbuf
;
this
->
verify_buf
=
doc2001plus_verifybuf
;
this
->
scan_bbt
=
inftl_scan_bbt
;
this
->
hwcontrol
=
NULL
;
this
->
select_chip
=
doc2001plus_select_chip
;
this
->
cmdfunc
=
doc2001plus_command
;
this
->
enable_hwecc
=
doc2001plus_enable_hwecc
;
doc
->
chips_per_floor
=
1
;
mtd
->
name
=
"DiskOnChip Millennium Plus"
;
return
1
;
}
static
inline
int
__init
doc_probe
(
unsigned
long
physadr
)
static
inline
int
__init
doc_probe
(
unsigned
long
physadr
)
{
{
unsigned
char
ChipID
;
unsigned
char
ChipID
;
...
@@ -1072,6 +1428,42 @@ static inline int __init doc_probe(unsigned long physadr)
...
@@ -1072,6 +1428,42 @@ static inline int __init doc_probe(unsigned long physadr)
case
DOC_ChipID_DocMil
:
case
DOC_ChipID_DocMil
:
reg
=
DoC_ECCConf
;
reg
=
DoC_ECCConf
;
break
;
break
;
case
DOC_ChipID_DocMilPlus16
:
case
DOC_ChipID_DocMilPlus32
:
case
0
:
/* Possible Millennium Plus, need to do more checks */
/* Possibly release from power down mode */
for
(
tmp
=
0
;
(
tmp
<
4
);
tmp
++
)
ReadDOC
(
virtadr
,
Mplus_Power
);
/* Reset the Millennium Plus ASIC */
tmp
=
DOC_MODE_RESET
|
DOC_MODE_MDWREN
|
DOC_MODE_RST_LAT
|
DOC_MODE_BDECT
;
WriteDOC
(
tmp
,
virtadr
,
Mplus_DOCControl
);
WriteDOC
(
~
tmp
,
virtadr
,
Mplus_CtrlConfirm
);
mdelay
(
1
);
/* Enable the Millennium Plus ASIC */
tmp
=
DOC_MODE_NORMAL
|
DOC_MODE_MDWREN
|
DOC_MODE_RST_LAT
|
DOC_MODE_BDECT
;
WriteDOC
(
tmp
,
virtadr
,
Mplus_DOCControl
);
WriteDOC
(
~
tmp
,
virtadr
,
Mplus_CtrlConfirm
);
mdelay
(
1
);
ChipID
=
ReadDOC
(
virtadr
,
ChipID
);
switch
(
ChipID
)
{
case
DOC_ChipID_DocMilPlus16
:
reg
=
DoC_Mplus_Toggle
;
break
;
case
DOC_ChipID_DocMilPlus32
:
printk
(
KERN_ERR
"DiskOnChip Millennium Plus 32MB is not supported, ignoring.
\n
"
);
default:
ret
=
-
ENODEV
;
goto
notfound
;
}
break
;
default:
default:
ret
=
-
ENODEV
;
ret
=
-
ENODEV
;
goto
notfound
;
goto
notfound
;
...
@@ -1095,16 +1487,27 @@ static inline int __init doc_probe(unsigned long physadr)
...
@@ -1095,16 +1487,27 @@ static inline int __init doc_probe(unsigned long physadr)
in fact the same DOC aliased to a new address. If writes
in fact the same DOC aliased to a new address. If writes
to one chip's alias resolution register change the value on
to one chip's alias resolution register change the value on
the other chip, they're the same chip. */
the other chip, they're the same chip. */
if
(
ChipID
==
DOC_ChipID_DocMilPlus16
)
{
oldval
=
ReadDOC
(
doc
->
virtadr
,
Mplus_AliasResolution
);
newval
=
ReadDOC
(
virtadr
,
Mplus_AliasResolution
);
}
else
{
oldval
=
ReadDOC
(
doc
->
virtadr
,
AliasResolution
);
oldval
=
ReadDOC
(
doc
->
virtadr
,
AliasResolution
);
newval
=
ReadDOC
(
virtadr
,
AliasResolution
);
newval
=
ReadDOC
(
virtadr
,
AliasResolution
);
}
if
(
oldval
!=
newval
)
if
(
oldval
!=
newval
)
continue
;
continue
;
if
(
ChipID
==
DOC_ChipID_DocMilPlus16
)
{
WriteDOC
(
~
newval
,
virtadr
,
Mplus_AliasResolution
);
oldval
=
ReadDOC
(
doc
->
virtadr
,
Mplus_AliasResolution
);
WriteDOC
(
newval
,
virtadr
,
Mplus_AliasResolution
);
// restore it
}
else
{
WriteDOC
(
~
newval
,
virtadr
,
AliasResolution
);
WriteDOC
(
~
newval
,
virtadr
,
AliasResolution
);
oldval
=
ReadDOC
(
doc
->
virtadr
,
AliasResolution
);
oldval
=
ReadDOC
(
doc
->
virtadr
,
AliasResolution
);
WriteDOC
(
newval
,
virtadr
,
AliasResolution
);
// restore it
WriteDOC
(
newval
,
virtadr
,
AliasResolution
);
// restore it
}
newval
=
~
newval
;
newval
=
~
newval
;
if
(
oldval
==
newval
)
{
if
(
oldval
==
newval
)
{
//
printk(KERN_DEBUG "Found alias of DOC at 0x%lx to 0x%lx\n", doc->physadr, physadr);
printk
(
KERN_DEBUG
"Found alias of DOC at 0x%lx to 0x%lx
\n
"
,
doc
->
physadr
,
physadr
);
goto
notfound
;
goto
notfound
;
}
}
}
}
...
@@ -1156,6 +1559,8 @@ static inline int __init doc_probe(unsigned long physadr)
...
@@ -1156,6 +1559,8 @@ static inline int __init doc_probe(unsigned long physadr)
if
(
ChipID
==
DOC_ChipID_Doc2k
)
if
(
ChipID
==
DOC_ChipID_Doc2k
)
numchips
=
doc2000_init
(
mtd
);
numchips
=
doc2000_init
(
mtd
);
else
if
(
ChipID
==
DOC_ChipID_DocMilPlus16
)
numchips
=
doc2001plus_init
(
mtd
);
else
else
numchips
=
doc2001_init
(
mtd
);
numchips
=
doc2001_init
(
mtd
);
...
@@ -1227,4 +1632,4 @@ module_exit(cleanup_nanddoc);
...
@@ -1227,4 +1632,4 @@ module_exit(cleanup_nanddoc);
MODULE_LICENSE
(
"GPL"
);
MODULE_LICENSE
(
"GPL"
);
MODULE_AUTHOR
(
"David Woodhouse <dwmw2@infradead.org>"
);
MODULE_AUTHOR
(
"David Woodhouse <dwmw2@infradead.org>"
);
MODULE_DESCRIPTION
(
"M-Systems DiskOnChip 2000
and Millennium
device driver
\n
"
);
MODULE_DESCRIPTION
(
"M-Systems DiskOnChip 2000
, Millennium and Millennium Plus
device driver
\n
"
);
drivers/mtd/nand/nand_base.c
View file @
1ad84001
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
* The AG-AND chips have nice features for speed improvement,
* The AG-AND chips have nice features for speed improvement,
* which are not supported yet. Read / program 4 pages in one go.
* which are not supported yet. Read / program 4 pages in one go.
*
*
* $Id: nand_base.c,v 1.11
3 2004/07/14 16:31:31 gleixner
Exp $
* $Id: nand_base.c,v 1.11
5 2004/08/09 13:19:45 dwmw2
Exp $
*
*
* This program is free software; you can redistribute it and/or modify
* 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
* it under the terms of the GNU General Public License version 2 as
...
@@ -58,7 +58,7 @@
...
@@ -58,7 +58,7 @@
#include <linux/bitops.h>
#include <linux/bitops.h>
#include <asm/io.h>
#include <asm/io.h>
#if
defined(CONFIG_MTD_PARTITIONS) || defined(CONFIG_MTD_PARTITIONS_MODULE)
#if
def CONFIG_MTD_PARTITIONS
#include <linux/mtd/partitions.h>
#include <linux/mtd/partitions.h>
#endif
#endif
...
@@ -1284,12 +1284,12 @@ static int nand_read_ecc (struct mtd_info *mtd, loff_t from, size_t len,
...
@@ -1284,12 +1284,12 @@ static int nand_read_ecc (struct mtd_info *mtd, loff_t from, size_t len,
nand_release_chip
(
mtd
);
nand_release_chip
(
mtd
);
/*
/*
* Return success, if no ECC failures, else -E
IO
* Return success, if no ECC failures, else -E
BADMSG
* fs driver will take care of that, because
* fs driver will take care of that, because
* retlen == desired len and result == -E
IO
* retlen == desired len and result == -E
BADMSG
*/
*/
*
retlen
=
read
;
*
retlen
=
read
;
return
ecc_failed
?
-
E
IO
:
0
;
return
ecc_failed
?
-
E
BADMSG
:
0
;
}
}
/**
/**
...
@@ -2108,8 +2108,8 @@ int nand_erase_nand (struct mtd_info *mtd, struct erase_info *instr, int allowbb
...
@@ -2108,8 +2108,8 @@ int nand_erase_nand (struct mtd_info *mtd, struct erase_info *instr, int allowbb
ret
=
instr
->
state
==
MTD_ERASE_DONE
?
0
:
-
EIO
;
ret
=
instr
->
state
==
MTD_ERASE_DONE
?
0
:
-
EIO
;
/* Do call back function */
/* Do call back function */
if
(
!
ret
&&
instr
->
callback
)
if
(
!
ret
)
instr
->
callback
(
instr
);
mtd_erase_callback
(
instr
);
/* Deselect and wake up anyone waiting on the device */
/* Deselect and wake up anyone waiting on the device */
nand_release_chip
(
mtd
);
nand_release_chip
(
mtd
);
...
@@ -2555,11 +2555,11 @@ void nand_release (struct mtd_info *mtd)
...
@@ -2555,11 +2555,11 @@ void nand_release (struct mtd_info *mtd)
{
{
struct
nand_chip
*
this
=
mtd
->
priv
;
struct
nand_chip
*
this
=
mtd
->
priv
;
#if
defined(CONFIG_MTD_PARTITIONS) || defined(CONFIG_MTD_PARTITIONS_MODULE)
#if
def CONFIG_MTD_PARTITIONS
/*
Un
register partitions */
/*
De
register partitions */
del_mtd_partitions
(
mtd
);
del_mtd_partitions
(
mtd
);
#endif
#endif
/*
Un
register the device */
/*
De
register the device */
del_mtd_device
(
mtd
);
del_mtd_device
(
mtd
);
/* Free bad block table memory, if allocated */
/* Free bad block table memory, if allocated */
...
...
drivers/mtd/redboot.c
View file @
1ad84001
/*
/*
* $Id: redboot.c,v 1.1
3 2004/04/01 10:17:40 gthomas
Exp $
* $Id: redboot.c,v 1.1
5 2004/08/10 07:55:16 dwmw2
Exp $
*
*
* Parse RedBoot-style Flash Image System (FIS) tables and
* Parse RedBoot-style Flash Image System (FIS) tables and
* produce a Linux partition array to match.
* produce a Linux partition array to match.
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
#include <linux/kernel.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/init.h>
#include <linux/vmalloc.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/partitions.h>
#include <linux/mtd/partitions.h>
...
@@ -53,7 +54,7 @@ static int parse_redboot_partitions(struct mtd_info *master,
...
@@ -53,7 +54,7 @@ static int parse_redboot_partitions(struct mtd_info *master,
static
char
nullstring
[]
=
"unallocated"
;
static
char
nullstring
[]
=
"unallocated"
;
#endif
#endif
buf
=
kmalloc
(
master
->
erasesize
,
GFP_KERNEL
);
buf
=
vmalloc
(
master
->
erasesize
);
if
(
!
buf
)
if
(
!
buf
)
return
-
ENOMEM
;
return
-
ENOMEM
;
...
@@ -190,7 +191,7 @@ static int parse_redboot_partitions(struct mtd_info *master,
...
@@ -190,7 +191,7 @@ static int parse_redboot_partitions(struct mtd_info *master,
fl
=
fl
->
next
;
fl
=
fl
->
next
;
kfree
(
old
);
kfree
(
old
);
}
}
k
free
(
buf
);
v
free
(
buf
);
return
ret
;
return
ret
;
}
}
...
...
include/linux/mtd/mtd.h
View file @
1ad84001
/*
/*
* $Id: mtd.h,v 1.5
4 2004/07/15 01:13:12 dwmw2
Exp $
* $Id: mtd.h,v 1.5
6 2004/08/09 18:46:04 dmarlin
Exp $
*
*
* Copyright (C) 1999-2003 David Woodhouse <dwmw2@infradead.org> et al.
* Copyright (C) 1999-2003 David Woodhouse <dwmw2@infradead.org> et al.
*
*
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
#include <linux/module.h>
#include <linux/module.h>
#include <linux/uio.h>
#include <linux/uio.h>
#include <linux/mtd/compatmac.h>
#include <mtd/mtd-abi.h>
#include <mtd/mtd-abi.h>
#define MTD_CHAR_MAJOR 90
#define MTD_CHAR_MAJOR 90
...
@@ -192,6 +193,17 @@ int default_mtd_readv(struct mtd_info *mtd, struct kvec *vecs,
...
@@ -192,6 +193,17 @@ int default_mtd_readv(struct mtd_info *mtd, struct kvec *vecs,
#define MTD_WRITEOOB(mtd, args...) (*(mtd->write_oob))(mtd, args)
#define MTD_WRITEOOB(mtd, args...) (*(mtd->write_oob))(mtd, args)
#define MTD_SYNC(mtd) do { if (mtd->sync) (*(mtd->sync))(mtd); } while (0)
#define MTD_SYNC(mtd) do { if (mtd->sync) (*(mtd->sync))(mtd); } while (0)
#ifdef CONFIG_MTD_PARTITIONS
void
mtd_erase_callback
(
struct
erase_info
*
instr
);
#else
static
inline
void
mtd_erase_callback
(
struct
erase_info
*
instr
)
{
if
(
instr
->
callback
)
instr
->
callback
(
instr
);
}
#endif
/*
/*
* Debugging macro and defines
* Debugging macro and defines
*/
*/
...
...
include/linux/mtd/physmap.h
View file @
1ad84001
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* For boards with physically mapped flash and using
* For boards with physically mapped flash and using
* drivers/mtd/maps/physmap.c mapping driver.
* drivers/mtd/maps/physmap.c mapping driver.
*
*
* $Id: physmap.h,v 1.
2 2004/07/14 17:48:46 dwmw2
Exp $
* $Id: physmap.h,v 1.
3 2004/07/21 00:16:15 jwboyer
Exp $
*
*
* Copyright (C) 2003 MontaVista Software Inc.
* Copyright (C) 2003 MontaVista Software Inc.
* Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
* Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
...
@@ -33,11 +33,11 @@ extern struct map_info physmap_map;
...
@@ -33,11 +33,11 @@ extern struct map_info physmap_map;
/*
/*
* Board needs to specify the exact mapping during their setup time.
* Board needs to specify the exact mapping during their setup time.
*/
*/
static
inline
void
physmap_configure
(
unsigned
long
addr
,
unsigned
long
size
,
int
b
us
width
,
void
(
*
set_vpp
)(
struct
map_info
*
,
int
)
)
static
inline
void
physmap_configure
(
unsigned
long
addr
,
unsigned
long
size
,
int
b
ank
width
,
void
(
*
set_vpp
)(
struct
map_info
*
,
int
)
)
{
{
physmap_map
.
phys
=
addr
;
physmap_map
.
phys
=
addr
;
physmap_map
.
size
=
size
;
physmap_map
.
size
=
size
;
physmap_map
.
b
uswidth
=
bus
width
;
physmap_map
.
b
ankwidth
=
bank
width
;
physmap_map
.
set_vpp
=
set_vpp
;
physmap_map
.
set_vpp
=
set_vpp
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment