public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Only 5 undocumented configuration symbols left
@ 2001-05-30 23:07 Eric S. Raymond
  2001-05-31 10:14 ` Bjorn Wesen
  2001-05-31 13:27 ` Tom Gall
  0 siblings, 2 replies; 4+ messages in thread
From: Eric S. Raymond @ 2001-05-30 23:07 UTC (permalink / raw)
  To: CML2, kbuild-devel; +Cc: bjorn.wesen, trini

The current list of symbols with missing help is very short. Here it is:

PPC port:

CONFIG_BLK_DEV_MPC8xx_IDE
CONFIG_IRQ_ALL_CPUS
CONFIG_USE_MDIO

CRIS port:

CONFIG_ETRAX_FLASH_BUSWIDTH
CONFIG_ETRAX_I2C_USES_PB_NOT_PB_I2C

Let's finish this off, people!
-- 
		<a href="http://www.tuxedo.org/~esr/">Eric S. Raymond</a>

The people cannot delegate to government the power to do anything
which would be unlawful for them to do themselves.
	-- John Locke, "A Treatise Concerning Civil Government"

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Only 5 undocumented configuration symbols left
  2001-05-30 23:07 Only 5 undocumented configuration symbols left Eric S. Raymond
@ 2001-05-31 10:14 ` Bjorn Wesen
  2001-05-31 11:28   ` Bruce Harada
  2001-05-31 13:27 ` Tom Gall
  1 sibling, 1 reply; 4+ messages in thread
From: Bjorn Wesen @ 2001-05-31 10:14 UTC (permalink / raw)
  To: Eric S. Raymond; +Cc: CML2, kbuild-devel

On Wed, 30 May 2001, Eric S. Raymond wrote:
> CONFIG_ETRAX_FLASH_BUSWIDTH
> CONFIG_ETRAX_I2C_USES_PB_NOT_PB_I2C

--- Configure.help      2001/05/08 14:22:21     1.24
+++ Configure.help      2001/05/31 10:11:20
@@ -17564,6 +17564,10 @@
 CONFIG_ETRAX_DRAM_SIZE
   Size of DRAM (decimal in MB) typically 2, 8 or 16.
 
+ETRAX Flash Memory configuration
+CONFIG_ETRAX_FLASH_BUSWIDTH
+  Width in bytes of the Flash bus (1, 2 or 4). Is usually 2.
+
 LED configuration on PA
 CONFIG_ETRAX_PA_LEDS
   The Etrax network driver is responsible for flashing LED's when
@@ -17991,6 +17995,14 @@
        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);
+
+Etrax100 I2C configuration
+CONFIG_ETRAX_I2C_USES_PB_NOT_PB_I2C
+  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
+  accesses the I2C I/O pins directly instead of going through the I2C
+  driver, like the DS1302 realtime-clock driver. If you are uncertain, 
+  choose yes here.
 
 Etrax100 I2C EEPROM (NVRAM) support
 CONFIG_ETRAX_I2C_EEPROM




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Only 5 undocumented configuration symbols left
  2001-05-31 10:14 ` Bjorn Wesen
@ 2001-05-31 11:28   ` Bruce Harada
  0 siblings, 0 replies; 4+ messages in thread
From: Bruce Harada @ 2001-05-31 11:28 UTC (permalink / raw)
  To: Bjorn Wesen; +Cc: esr, linux-kernel, kbuild-devel


Since I don't actually know what you're talking about, I'll just make picky
little comments about the grammar, etc. ;)

On Thu, 31 May 2001 12:14:06 +0200 (CEST)
Bjorn Wesen <bjorn.wesen@axis.com> wrote:

> +Etrax100 I2C configuration
> +CONFIG_ETRAX_I2C_USES_PB_NOT_PB_I2C
> +  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
> +  accesses the I2C I/O pins directly instead of going through the I2C
     ^^^^^^^^
     access

> +  driver, like the DS1302 realtime-clock driver. If you are uncertain, 
> +  choose yes here.
     ^^^^^^^^^^^^^^^
This is usually "say Y here." Minor, I know, but it'd be nice to get the
nomenclature standardized.

(Actually, "...to be selected in order to use some drivers, such as the DS1302
realtime clock driver, that access the I2C I/O pins directly instead of going
through the I2C driver." might scan better.)


Bruce



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Only 5 undocumented configuration symbols left
  2001-05-30 23:07 Only 5 undocumented configuration symbols left Eric S. Raymond
  2001-05-31 10:14 ` Bjorn Wesen
@ 2001-05-31 13:27 ` Tom Gall
  1 sibling, 0 replies; 4+ messages in thread
From: Tom Gall @ 2001-05-31 13:27 UTC (permalink / raw)
  To: esr; +Cc: CML2, kbuild-devel, bjorn.wesen, trini

"Eric S. Raymond" wrote:
> 
> The current list of symbols with missing help is very short. Here it is:
> 
> PPC port:

> CONFIG_IRQ_ALL_CPUS

This option gives the kernel permission to distribute IRQs across multiple CPUs.
Saying N here will route all IRQs to the first CPU. Generally SMP PowerMacs can
answer Y. SMP IBM CHRP boxes or Power3 boxes should say N for now.

Regards,

Tom


-- 
Tom Gall - PPC64                 "Where's the ka-boom? There was
Linux Technology Center           supposed to be an earth
(w) tom_gall@vnet.ibm.com         shattering ka-boom!"
(w) 507-253-4558                 -- Marvin Martian
(h) tgall@rochcivictheatre.org
http://www.ibm.com/linux/ltc/projects/ppc

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2001-05-31 13:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-05-30 23:07 Only 5 undocumented configuration symbols left Eric S. Raymond
2001-05-31 10:14 ` Bjorn Wesen
2001-05-31 11:28   ` Bruce Harada
2001-05-31 13:27 ` Tom Gall

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox