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
6909f28b
Commit
6909f28b
authored
Aug 05, 2004
by
David Woodhouse
Browse files
Options
Browse Files
Download
Plain Diff
Merge shinybook.infradead.org:/home/dwmw2/bk/linus-2.5
into shinybook.infradead.org:/home/dwmw2/bk/mtd-2.6
parents
30e74fea
140dc928
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
18 additions
and
52 deletions
+18
-52
MAINTAINERS
MAINTAINERS
+1
-1
drivers/mtd/chips/cfi_cmdset_0020.c
drivers/mtd/chips/cfi_cmdset_0020.c
+1
-6
drivers/mtd/devices/pmc551.c
drivers/mtd/devices/pmc551.c
+4
-10
drivers/mtd/mtdcore.c
drivers/mtd/mtdcore.c
+1
-2
drivers/mtd/nand/autcpu12.c
drivers/mtd/nand/autcpu12.c
+1
-9
drivers/mtd/nand/tx4925ndfmc.c
drivers/mtd/nand/tx4925ndfmc.c
+1
-9
fs/Kconfig
fs/Kconfig
+8
-12
include/linux/mtd/cfi.h
include/linux/mtd/cfi.h
+1
-3
No files found.
MAINTAINERS
View file @
6909f28b
...
...
@@ -1384,7 +1384,7 @@ MEMORY TECHNOLOGY DEVICES
P: David Woodhouse
M: dwmw2@redhat.com
W: http://www.linux-mtd.infradead.org/
L:
mtd@
infradead.org
L:
linux-mtd@lists.
infradead.org
S: Maintained
MICROTEK X6 SCANNER
...
...
drivers/mtd/chips/cfi_cmdset_0020.c
View file @
6909f28b
...
...
@@ -4,7 +4,7 @@
*
* (C) 2000 Red Hat. GPL'd
*
* $Id: cfi_cmdset_0020.c,v 1.1
3 2004/07/12 21:52:50
dwmw2 Exp $
* $Id: cfi_cmdset_0020.c,v 1.1
4 2004/07/20 02:44:25
dwmw2 Exp $
*
* 10/10/2000 Nicolas Pitre <nico@cam.org>
* - completely revamped method functions so they are aware and
...
...
@@ -1400,11 +1400,6 @@ static void cfi_staa_destroy(struct mtd_info *mtd)
kfree
(
cfi
);
}
#if LINUX_VERSION_CODE < 0x20212 && defined(MODULE)
#define cfi_staa_init init_module
#define cfi_staa_exit cleanup_module
#endif
static
char
im_name
[]
=
"cfi_cmdset_0020"
;
int
__init
cfi_staa_init
(
void
)
...
...
drivers/mtd/devices/pmc551.c
View file @
6909f28b
/*
* $Id: pmc551.c,v 1.2
6 2004/07/14 17:25:07
dwmw2 Exp $
* $Id: pmc551.c,v 1.2
7 2004/07/20 02:44:26
dwmw2 Exp $
*
* PMC551 PCI Mezzanine Ram Device
*
...
...
@@ -109,12 +109,6 @@
#include <linux/mtd/pmc551.h>
#include <linux/mtd/compatmac.h>
#if LINUX_VERSION_CODE > 0x20300
#define PCI_BASE_ADDRESS(dev) (dev->resource[0].start)
#else
#define PCI_BASE_ADDRESS(dev) (dev->base_address[0])
#endif
static
struct
mtd_info
*
pmc551list
;
static
int
pmc551_erase
(
struct
mtd_info
*
mtd
,
struct
erase_info
*
instr
)
...
...
@@ -564,7 +558,7 @@ static u32 fixup_pmc551 (struct pci_dev *dev)
(
size
<
1024
)
?
size
:
(
size
<
1048576
)
?
size
>>
10
:
size
>>
20
,
(
size
<
1024
)
?
'B'
:
(
size
<
1048576
)
?
'K'
:
'M'
,
size
,
((
dcmd
&
(
0x1
<<
3
))
==
0
)
?
"non-"
:
""
,
PCI_BASE_ADDRESS
(
dev
)
&
PCI_BASE_ADDRESS_MEM_MASK
);
(
dev
->
resource
[
0
].
start
)
&
PCI_BASE_ADDRESS_MEM_MASK
);
/*
* Check to see the state of the memory
...
...
@@ -694,7 +688,7 @@ int __init init_pmc551(void)
}
printk
(
KERN_NOTICE
"pmc551: Found PCI V370PDC at 0x%lX
\n
"
,
PCI_
BASE_ADDRESS
(
PCI_Device
)
);
PCI_
Device
->
resource
[
0
].
start
);
/*
* The PMC551 device acts VERY weird if you don't init it
...
...
@@ -748,7 +742,7 @@ int __init init_pmc551(void)
printk
(
KERN_NOTICE
"pmc551: Using specified aperture size %dM
\n
"
,
asize
>>
20
);
priv
->
asize
=
asize
;
}
priv
->
start
=
ioremap
((
PCI_BASE_ADDRESS
(
PCI_Device
)
priv
->
start
=
ioremap
((
(
PCI_Device
->
resource
[
0
].
start
)
&
PCI_BASE_ADDRESS_MEM_MASK
),
priv
->
asize
);
...
...
drivers/mtd/mtdcore.c
View file @
6909f28b
/*
* $Id: mtdcore.c,v 1.4
2 2004/07/13 10:21:13
dwmw2 Exp $
* $Id: mtdcore.c,v 1.4
3 2004/07/23 15:20:46
dwmw2 Exp $
*
* Core registration and callback routines for MTD
* drivers and users.
*
*/
#include <linux/version.h>
#include <linux/config.h>
#include <linux/module.h>
#include <linux/kernel.h>
...
...
drivers/mtd/nand/autcpu12.c
View file @
6909f28b
...
...
@@ -6,7 +6,7 @@
* Derived from drivers/mtd/spia.c
* Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com)
*
* $Id: autcpu12.c,v 1.
19 2004/07/12 15:02:15
dwmw2 Exp $
* $Id: autcpu12.c,v 1.
20 2004/07/20 02:44:26
dwmw2 Exp $
*
* 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
...
...
@@ -44,14 +44,6 @@
*/
static
struct
mtd_info
*
autcpu12_mtd
=
NULL
;
/*
* Module stuff
*/
#if LINUX_VERSION_CODE < 0x20212 && defined(MODULE)
#define autcpu12_init init_module
#define autcpu12_cleanup cleanup_module
#endif
static
int
autcpu12_io_base
=
CS89712_VIRT_BASE
;
static
int
autcpu12_fio_pbase
=
AUTCPU12_PHYS_SMC
;
static
int
autcpu12_fio_ctrl
=
AUTCPU12_SMC_SELECT_OFFSET
;
...
...
drivers/mtd/nand/tx4925ndfmc.c
View file @
6909f28b
...
...
@@ -11,7 +11,7 @@
* Derived from drivers/mtd/autcpu12.c
* Copyright (c) 2001 Thomas Gleixner (gleixner@autronix.de)
*
* $Id: tx4925ndfmc.c,v 1.
2 2004/03/27 19:55:53 gleixner
Exp $
* $Id: tx4925ndfmc.c,v 1.
3 2004/07/20 02:44:26 dwmw2
Exp $
*
* Copyright (C) 2001 Toshiba Corporation
*
...
...
@@ -39,14 +39,6 @@ extern struct nand_oobinfo jffs2_oobinfo;
*/
static
struct
mtd_info
*
tx4925ndfmc_mtd
=
NULL
;
/*
* Module stuff
*/
#if LINUX_VERSION_CODE < 0x20212 && defined(MODULE)
#define tx4925ndfmc_init init_module
#define tx4925ndfmc_cleanup cleanup_module
#endif
/*
* Define partitions for flash devices
*/
...
...
fs/Kconfig
View file @
6909f28b
...
...
@@ -1076,24 +1076,20 @@ config JFFS2_FS_DEBUG
messages at debug level 1 while the misbehaviour was occurring.
config JFFS2_FS_NAND
bool "JFFS2 support for NAND flash
(EXPERIMENTAL)
"
depends on JFFS2_FS
&& EXPERIMENTAL
bool "JFFS2 support for NAND flash"
depends on JFFS2_FS
default n
help
This enables the experimental support for NAND flash in JFFS2. NAND
is a newer type of flash chip design than the traditional NOR flash,
with higher density but a handful of characteristics which make it
more interesting for the file system to use. Support for NAND flash
is not yet complete and may corrupt data. For further information,
including a link to the mailing list where details of the remaining
work to be completed for NAND flash support can be found, see the
JFFS2 web site at <http://sources.redhat.com/jffs2>.
This enables the support for NAND flash in JFFS2. NAND is a newer
type of flash chip design than the traditional NOR flash, with
higher density but a handful of characteristics which make it more
interesting for the file system to use.
Say 'N' unless you have NAND flash and you are willing to test and
develop JFFS2 support for it.
Say 'N' unless you have NAND flash.
config JFFS2_COMPRESSION_OPTIONS
bool "Advanced compression options for JFFS2"
depends on JFFS2_FS
default n
help
Enabling this option allows you to explicitly choose which
...
...
include/linux/mtd/cfi.h
View file @
6909f28b
/* Common Flash Interface structures
* See http://support.intel.com/design/flash/technote/index.htm
* $Id: cfi.h,v 1.4
4 2004/07/13 22:32:52
dwmw2 Exp $
* $Id: cfi.h,v 1.4
5 2004/07/20 02:44:27
dwmw2 Exp $
*/
#ifndef __MTD_CFI_H__
...
...
@@ -328,14 +328,12 @@ static inline uint8_t cfi_read_query(struct map_info *map, uint32_t addr)
static
inline
void
cfi_udelay
(
int
us
)
{
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,0)
unsigned
long
t
=
us
*
HZ
/
1000000
;
if
(
t
)
{
set_current_state
(
TASK_UNINTERRUPTIBLE
);
schedule_timeout
(
t
);
return
;
}
#endif
udelay
(
us
);
cond_resched
();
}
...
...
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