Fix copyright
[yaffs2.git] / direct / u-boot / fs / yaffs2 / yaffs_mtdif.c
1 /*
2  * YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2018 Aleph One Ltd.
5  *
6  * Created by Charles Manning <charles@aleph1.co.uk>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  */
12
13 /* XXX U-BOOT XXX */
14 #include <common.h>
15
16 #include "yportenv.h"
17
18
19 #include "yaffs_mtdif.h"
20
21 #include "linux/mtd/mtd.h"
22 #include "linux/types.h"
23 #include "linux/time.h"
24 #include "linux/mtd/nand.h"
25
26
27 static inline void translate_spare2oob(const struct yaffs_spare *spare, u8 *oob)
28 {
29         oob[0] = spare->tb0;
30         oob[1] = spare->tb1;
31         oob[2] = spare->tb2;
32         oob[3] = spare->tb3;
33         oob[4] = spare->tb4;
34         oob[5] = spare->tb5 & 0x3f;
35         oob[5] |= spare->block_status == 'Y' ? 0 : 0x80;
36         oob[5] |= spare->page_status == 0 ? 0 : 0x40;
37         oob[6] = spare->tb6;
38         oob[7] = spare->tb7;
39 }
40
41 static inline void translate_oob2spare(struct yaffs_spare *spare, u8 *oob)
42 {
43         struct yaffs_nand_spare *nspare = (struct yaffs_nand_spare *)spare;
44         spare->tb0 = oob[0];
45         spare->tb1 = oob[1];
46         spare->tb2 = oob[2];
47         spare->tb3 = oob[3];
48         spare->tb4 = oob[4];
49         spare->tb5 = oob[5] == 0xff ? 0xff : oob[5] & 0x3f;
50         spare->block_status = oob[5] & 0x80 ? 0xff : 'Y';
51         spare->page_status = oob[5] & 0x40 ? 0xff : 0;
52         spare->ecc1[0] = spare->ecc1[1] = spare->ecc1[2] = 0xff;
53         spare->tb6 = oob[6];
54         spare->tb7 = oob[7];
55         spare->ecc2[0] = spare->ecc2[1] = spare->ecc2[2] = 0xff;
56
57         nspare->eccres1 = nspare->eccres2 = 0; /* FIXME */
58 }
59
60
61 int nandmtd_WriteChunkToNAND(struct yaffs_dev *dev, int chunkInNAND,
62                              const u8 *data, const struct yaffs_spare *spare)
63 {
64         struct mtd_info *mtd = (struct mtd_info *)(dev->driver_context);
65         struct mtd_oob_ops ops;
66         size_t dummy;
67         int retval = 0;
68         loff_t addr = ((loff_t) chunkInNAND) * dev->param.total_bytes_per_chunk;
69         u8 spareAsBytes[8]; /* OOB */
70
71         if (data && !spare)
72                 retval = mtd->write(mtd, addr, dev->data_bytes_per_chunk,
73                                 &dummy, data);
74         else if (spare) {
75                 if (dev->param.use_nand_ecc) {
76                         translate_spare2oob(spare, spareAsBytes);
77                         ops.mode = MTD_OOB_AUTO;
78                         ops.ooblen = 8; /* temp hack */
79                 } else {
80                         ops.mode = MTD_OOB_RAW;
81                         ops.ooblen = YAFFS_BYTES_PER_SPARE;
82                 }
83                 ops.len = data ? dev->data_bytes_per_chunk : ops.ooblen;
84                 ops.datbuf = (u8 *)data;
85                 ops.ooboffs = 0;
86                 ops.oobbuf = spareAsBytes;
87                 retval = mtd->write_oob(mtd, addr, &ops);
88         }
89
90         if (retval == 0)
91                 return YAFFS_OK;
92         else
93                 return YAFFS_FAIL;
94 }
95
96 int nandmtd_ReadChunkFromNAND(struct yaffs_dev *dev, int chunkInNAND, u8 *data,
97                               struct yaffs_spare *spare)
98 {
99         struct mtd_info *mtd = (struct mtd_info *)(dev->driver_context);
100         struct mtd_oob_ops ops;
101         size_t dummy;
102         int retval = 0;
103
104         loff_t addr = ((loff_t) chunkInNAND) * dev->param.total_bytes_per_chunk;
105         u8 spareAsBytes[8]; /* OOB */
106
107         if (data && !spare)
108                 retval = mtd->read(mtd, addr, dev->data_bytes_per_chunk,
109                                 &dummy, data);
110         else if (spare) {
111                 if (dev->param.use_nand_ecc) {
112                         ops.mode = MTD_OOB_AUTO;
113                         ops.ooblen = 8; /* temp hack */
114                 } else {
115                         ops.mode = MTD_OOB_RAW;
116                         ops.ooblen = YAFFS_BYTES_PER_SPARE;
117                 }
118                 ops.len = data ? dev->data_bytes_per_chunk : ops.ooblen;
119                 ops.datbuf = data;
120                 ops.ooboffs = 0;
121                 ops.oobbuf = spareAsBytes;
122                 retval = mtd->read_oob(mtd, addr, &ops);
123                 if (dev->param.use_nand_ecc)
124                         translate_oob2spare(spare, spareAsBytes);
125         }
126
127         if (retval == 0)
128                 return YAFFS_OK;
129         else
130                 return YAFFS_FAIL;
131 }
132
133 int nandmtd_EraseBlockInNAND(struct yaffs_dev *dev, int blockNumber)
134 {
135         struct mtd_info *mtd = (struct mtd_info *)(dev->driver_context);
136         __u32 addr =
137             ((loff_t) blockNumber) * dev->param.total_bytes_per_chunk
138                 * dev->param.chunks_per_block;
139         struct erase_info ei;
140         int retval = 0;
141
142         ei.mtd = mtd;
143         ei.addr = addr;
144         ei.len = dev->data_bytes_per_chunk * dev->param.chunks_per_block;
145         ei.time = 1000;
146         ei.retries = 2;
147         ei.callback = NULL;
148         ei.priv = (u_long) dev;
149
150         /* Todo finish off the ei if required */
151
152
153         retval = mtd->erase(mtd, &ei);
154
155         if (retval == 0)
156                 return YAFFS_OK;
157         else
158                 return YAFFS_FAIL;
159 }
160
161 int nandmtd_InitialiseNAND(struct yaffs_dev *dev)
162 {
163         return YAFFS_OK;
164 }