diff options
author | Wolfgang Grandegger <wg@grandegger.com> | 2011-11-30 23:41:19 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-12-01 13:09:31 -0500 |
commit | edd2c26ffb7742bf0d3bd324694d220281844a01 (patch) | |
tree | 33d00224c3cd59439176fb3ca122747c5034f444 /drivers/net/can/cc770/Makefile | |
parent | 2a367c3a82557cd11a04949ef2160658987fa772 (diff) | |
download | talos-obmc-linux-edd2c26ffb7742bf0d3bd324694d220281844a01.tar.gz talos-obmc-linux-edd2c26ffb7742bf0d3bd324694d220281844a01.zip |
can: cc770: add legacy ISA bus driver for the CC770 and AN82527
This patch adds support for legacy Bosch CC770 and Intel AN82527 CAN
controllers on the ISA or PC-104 bus. The I/O port or memory address
and the IRQ number must be specified via module parameters:
insmod cc770_isa.ko port=0x310,0x380 irq=7,11
for ISA devices using I/O ports or:
insmod cc770_isa.ko mem=0xd1000,0xd1000 irq=7,11
for memory mapped ISA devices.
Indirect access via address and data port is supported as well:
insmod cc770_isa.ko port=0x310,0x380 indirect=1 irq=7,11
Furthermore, the following mode parameter can be defined:
clk: External oscillator clock frequency (default=16000000 [16 MHz])
cir: CPU interface register (default=0x40 [DSC])
bcr: Bus configuration register (default=0x40 [CBY])
cor: Clockout register (default=0x00)
Note: for clk, cir, bcr and cor, the first argument re-defines the
default for all other devices, e.g.:
insmod cc770_isa.ko mem=0xd1000,0xd1000 irq=7,11 clk=24000000
is equivalent to
insmod cc770_isa.ko mem=0xd1000,0xd1000 irq=7,11 clk=24000000,24000000
Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
Acked-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/can/cc770/Makefile')
-rw-r--r-- | drivers/net/can/cc770/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/can/cc770/Makefile b/drivers/net/can/cc770/Makefile index 34e818026157..872ecffa80b7 100644 --- a/drivers/net/can/cc770/Makefile +++ b/drivers/net/can/cc770/Makefile @@ -3,5 +3,6 @@ # obj-$(CONFIG_CAN_CC770) += cc770.o +obj-$(CONFIG_CAN_CC770_ISA) += cc770_isa.o ccflags-$(CONFIG_CAN_DEBUG_DEVICES) := -DDEBUG |