⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 kconfig

📁 优龙2410linux2.6.8内核源代码
💻
📖 第 1 页 / 共 3 页
字号:
	help	  Memory Technology Devices are flash, RAM and similar chips, often	  used for solid state file systems on embedded devices. This option	  will provide the generic support for MTD drivers to register	  themselves with the kernel and for potential users of MTD devices	  to enumerate the devices which are present and obtain a handle on	  them. It will also allow you to select individual drivers for 	  particular hardware and users of MTD devices. If unsure, say N.config MTD_CFI	tristate	depends on ETRAX_AXISFLASHMAP	default y	help	  The Common Flash Interface specification was developed by Intel,	  AMD and other flash manufactures that provides a universal method	  for probing the capabilities of flash devices. If you wish to	  support any device that is CFI-compliant, you need to enable this	  option. Visit <http://www.amd.com/products/nvd/overview/cfi.html>	  for more information on CFI.config MTD_CFI_AMDSTD	tristate	depends on ETRAX_AXISFLASHMAP	default y	help	  The Common Flash Interface defines a number of different command	  sets which a CFI-compliant chip may claim to implement. This code	  provides support for one of those command sets, used on chips 	  chips including the AMD Am29LV320.config MTD_OBSOLETE_CHIPS	bool	depends on ETRAX_AXISFLASHMAP	default y	help	  This option does not enable any code directly, but will allow you to	  select some other chip drivers which are now considered obsolete,	  because the generic CONFIG_JEDEC_PROBE code above should now detect	  the chips which are supported by these drivers, and allow the generic	  CFI-compatible drivers to drive the chips. Say 'N' here unless you have	  already tried the CONFIG_JEDEC_PROBE method and reported its failure	  to the MTD mailing list at <linux-mtd@lists.infradead.org>config MTD_AMDSTD	tristate	depends on ETRAX_AXISFLASHMAP	default y	help	  This option enables support for flash chips using AMD-compatible	  commands, including some which are not CFI-compatible and hence 	  cannot be used with the CONFIG_MTD_CFI_AMDSTD option.	  It also works on AMD compatible chips that do conform to CFI.config MTD_CHAR	tristate	depends on ETRAX_AXISFLASHMAP	default y	help	  This provides a character device for each MTD device present in	  the system, allowing the user to read and write directly to the	  memory chips, and also use ioctl() to obtain information about	  the device, or to erase parts of it.config MTD_BLOCK	tristate	depends on ETRAX_AXISFLASHMAP	default y	---help---	  Although most flash chips have an erase size too large to be useful	  as block devices, it is possible to use MTD devices which are based	  on RAM chips in this manner. This block device is a user of MTD	  devices performing that function.	  At the moment, it is also required for the Journalling Flash File	  System(s) to obtain a handle on the MTD device when it's mounted	  (although JFFS and JFFS2 don't actually use any of the functionality	  of the mtdblock device).	  Later, it may be extended to perform read/erase/modify/write cycles	  on flash chips to emulate a smaller block size. Needless to say,	  this is very unsafe, but could be useful for file systems which are	  almost never written to.	  You do not need this option for use with the DiskOnChip devices. For	  those, enable NFTL support (CONFIG_NFTL) instead.config MTD_PARTITIONS	tristate	depends on ETRAX_AXISFLASHMAP	default y	help	  If you have a device which needs to divide its flash chip(s) up	  into multiple 'partitions', each of which appears to the user as	  a separate MTD device, you require this option to be enabled. If	  unsure, say 'Y'.	  Note, however, that you don't need this option for the DiskOnChip	  devices. Partitioning on NFTL 'devices' is a different - that's the	  'normal' form of partitioning used on a block device.config MTD_CONCAT	tristate	depends on ETRAX_AXISFLASHMAP	default yconfig ETRAX_I2C	bool "I2C support"	depends on ETRAX_ARCH_V10	help	  Enables an I2C driver on ETRAX100.	  EXAMPLE usage:	  i2c_arg = I2C_WRITEARG(STA013_WRITE_ADDR, reg, val);	  ioctl(fd, _IO(ETRAXI2C_IOCTYPE, I2C_WRITEREG), i2c_arg);	  i2c_arg = I2C_READARG(STA013_READ_ADDR, reg);	  val = ioctl(fd, _IO(ETRAXI2C_IOCTYPE, I2C_READREG), i2c_arg);# this is true for most products since PB-I2C seems to be somewhat# flawed.. config ETRAX_I2C_USES_PB_NOT_PB_I2C	bool "I2C uses PB not PB-I2C"	depends on ETRAX_I2C	help	  Select whether to use the special I2C mode in the PB I/O register or	  not.  This option needs to be selected in order to use some drivers	  that access the I2C I/O pins directly instead of going through the	  I2C driver, like the DS1302 realtime-clock driver.  If you are	  uncertain, choose Y here.config ETRAX_I2C_DATA_PORT	int "I2C SDA bit number"	depends on ETRAX_I2C_USES_PB_NOT_PB_I2C	default "0"	help	  Selects the pin on Port B where the data pin is connectedconfig ETRAX_I2C_CLK_PORT	int "I2C SCL bit number"	depends on ETRAX_I2C_USES_PB_NOT_PB_I2C	default "1"	help	  Select the pin on Port B where the clock pin is connectedconfig ETRAX_I2C_EEPROM	bool "I2C EEPROM (non-volatile RAM) support"	depends on ETRAX_I2C	help	  Enables I2C EEPROM (non-volatile RAM) on PB0 and PB1 using the I2C	  driver.  Select size option: Probed, 2k, 8k, 16k.	  (Probing works for 2k and 8k but not that well for 16k)choice	prompt "EEPROM size"	depends on ETRAX_I2C_EEPROM	default ETRAX_I2C_EEPROM_PROBEconfig ETRAX_I2C_EEPROM_PROBE	bool "Probed"	help	  Specifies size or auto probe of the EEPROM size.	  Options: Probed, 2k, 8k, 16k.	  (Probing works for 2k and 8k but not that well for 16k)config ETRAX_I2C_EEPROM_2KB	bool "2kB"	help	  Use a 2kB EEPROM.config ETRAX_I2C_EEPROM_8KB	bool "8kB"	help	  Use a 8kB EEPROM.config ETRAX_I2C_EEPROM_16KB	bool "16kB"	help	  Use a 16kB EEPROM.endchoiceconfig ETRAX_GPIO	bool "GPIO support"	depends on ETRAX_ARCH_V10	---help---	  Enables the ETRAX general port device (major 120, minors 0 and 1).	  You can use this driver to access the general port bits. It supports	  these ioctl's:	  #include <linux/etraxgpio.h>	  fd = open("/dev/gpioa", O_RDWR); // or /dev/gpiob	  ioctl(fd, _IO(ETRAXGPIO_IOCTYPE, IO_SETBITS), bits_to_set);	  ioctl(fd, _IO(ETRAXGPIO_IOCTYPE, IO_CLRBITS), bits_to_clear);	  val = ioctl(fd, _IO(ETRAXGPIO_IOCTYPE, IO_READBITS), NULL);	  Remember that you need to setup the port directions appropriately in	  the General configuration.config ETRAX_PA_BUTTON_BITMASK	hex "PA-buttons bitmask"	depends on ETRAX_GPIO	default "02"	help	  This is a bitmask with information about what bits on PA that	  are used for buttons.	  Most products has a so called TEST button on PA1, if that's true	  use 02 here.	  Use 00 if there are no buttons on PA.	  If the bitmask is <> 00 a button driver will be included in the gpio	  driver. ETRAX general I/O support must be enabled.config ETRAX_PA_CHANGEABLE_DIR	hex "PA user changeable dir mask"	depends on ETRAX_GPIO	default "00"	help	  This is a bitmask with information of what bits in PA that a user	  can change direction on using ioctl's.	  Bit set = changeable.	  You probably want 00 here.config ETRAX_PA_CHANGEABLE_BITS	hex "PA user changeable bits mask"	depends on ETRAX_GPIO	default "FF"	help	  This is a bitmask with information of what bits in PA that a user	  can change change the value on using ioctl's.	  Bit set = changeable.	  You probably want 00 here.config ETRAX_PB_CHANGEABLE_DIR	hex "PB user changeable dir mask"	depends on ETRAX_GPIO	default "00"	help	  This is a bitmask with information of what bits in PB that a user	  can change direction on using ioctl's.	  Bit set = changeable.	  You probably want 00 here.config ETRAX_PB_CHANGEABLE_BITS	hex "PB user changeable bits mask"	depends on ETRAX_GPIO	default "FF"	help	  This is a bitmask with information of what bits in PB that a user	  can change the value on using ioctl's.	  Bit set = changeable.	  You probably want 00 here.config ETRAX_RTC	bool "Real Time Clock support"	depends on ETRAX_ARCH_V10	help	  Enables drivers for the Real-Time Clock battery-backed chips on 	  some products. The kernel reads the time when booting, and	  the date can be set using ioctl(fd, RTC_SET_TIME, &rt) with rt a	  rtc_time struct (see <file:include/asm-cris/rtc.h>) on the /dev/rtc	  device, major 121.  You can check the time with cat /proc/rtc, but	  normal time reading should be done using libc function time and	  friends.choice	prompt "RTC chip"	depends on ETRAX_RTC	default ETRAX_DS1302config ETRAX_DS1302	bool "DS1302"	help	  Enables the driver for the DS1302 Real-Time Clock battery-backed	  chip on some products. config ETRAX_PCF8563	bool "PCF8563"	help	  Enables the driver for the PCF8563 Real-Time Clock battery-backed	  chip on some products.  endchoiceconfig ETRAX_DS1302_RST_ON_GENERIC_PORT	bool "DS1302 RST on Generic Port"	depends on ETRAX_DS1302	help	  If your product has the RST signal line for the DS1302 RTC on the	  Generic Port then say Y here, otherwise leave it as N in which	  case the RST signal line is assumed to be connected to Port PB	  (just like the SCL and SDA lines).config ETRAX_DS1302_RSTBIT	int "DS1302 RST bit number"	depends on ETRAX_DS1302	default "2"	help	  This is the bit number for the RST signal line of the DS1302 RTC on	  the selected port. If you have selected the generic port then it	  should be bit 27, otherwise your best bet is bit 5.config ETRAX_DS1302_SCLBIT	int "DS1302 SCL bit number"	depends on ETRAX_DS1302	default "1"	help	  This is the bit number for the SCL signal line of the DS1302 RTC on	  Port PB. This is probably best left at 3.config ETRAX_DS1302_SDABIT	int "DS1302 SDA bit number"	depends on ETRAX_DS1302	default "0"	help	  This is the bit number for the SDA signal line of the DS1302 RTC on	  Port PB. This is probably best left at 2.config ETRAX_DS1302_TRICKLE_CHARGE	int "DS1302 Trickle charger value"	depends on ETRAX_DS1302	default "0"	help	  This controls the initial value of the trickle charge register.	  0 = disabled (use this if you are unsure or have a non rechargable battery)	  Otherwise the following values can be OR:ed together to control the 	  charge current:	  1 = 2kohm, 2 = 4kohm, 3 = 4kohm	  4 = 1 diode, 8 = 2 diodes	  Allowed values are (increasing current): 0, 11, 10, 9, 7, 6, 5

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -