blob: ee7584c0c4d2d8f800fa8dcdc6958e9a9ef23ead [file] [log] [blame]
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -07001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2012 The Chromium OS Authors.
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; version 2 of the License.
9##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13## GNU General Public License for more details.
14##
15## You should have received a copy of the GNU General Public License
16## along with this program; if not, write to the Free Software
17## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18##
19
20config SPI_FLASH
21 bool
22 default n
23 help
24 Select this option if your chipset driver needs to store certain
25 data in the SPI flash.
26
27config SPI_FLASH_EON
28 bool
29 default y
30 depends on SPI_FLASH
31 help
32 Select this option if your chipset driver needs to store certain
33 data in the SPI flash and your SPI flash is made by EON.
34
35config SPI_FLASH_MACRONIX
36 bool
37 default y
38 depends on SPI_FLASH
39 help
40 Select this option if your chipset driver needs to store certain
41 data in the SPI flash and your SPI flash is made by Macronix.
42
43config SPI_FLASH_SPANSION
44 bool
45 default y
46 depends on SPI_FLASH
47 help
48 Select this option if your chipset driver needs to store certain
49 data in the SPI flash and your SPI flash is made by Spansion.
50
51config SPI_FLASH_SST
52 bool
53 default y
54 depends on SPI_FLASH
55 help
56 Select this option if your chipset driver needs to store certain
57 data in the SPI flash and your SPI flash is made by SST.
58
59config SPI_FLASH_STMICRO
60 bool
61 default y
62 depends on SPI_FLASH
63 help
64 Select this option if your chipset driver needs to store certain
65 data in the SPI flash and your SPI flash is made by ST MICRO.
66
67config SPI_FLASH_WINBOND
68 bool
69 default y
70 depends on SPI_FLASH
71 help
72 Select this option if your chipset driver needs to store certain
73 data in the SPI flash and your SPI flash is made by Winbond.
74
75config SPI_FLASH_NO_FAST_READ
76 bool
77 default n
78 depends on SPI_FLASH
79 help
80 Select this option if your setup requires to avoid "fast read"s
81 from the SPI flash parts.