truck-code
sja1000.h
Go to the documentation of this file.
1 
13 #include <sys/time.h>
14 #include "utils/common.h"
15 #include "utils/timestamp.h"
16 #include "delay.h" /* atomic_t */
17 
18 #ifndef INCLUDE_CAN_SJA1000_H_
19 #define INCLUDE_CAN_SJA1000_H_
20 
22 #define SJA1000_MAP_SIZE 128
23 
24 
25 /* --- Standard definition with offset 1 -------------------------------------*/
26 
35 union frame {
36  struct {
42  } extframe;
43  struct {
44  BYTE canid1;
45  BYTE canid2;
47  } stdframe;
48 };
49 
56 typedef struct canregs {
74  union frame frame;
78 } __attribute__((packed)) canregs_t;
79 
80 #define CAN_RANGE 0x20 /* default: 32 registers */
81 
82 
83 /* --- Mode Register -----------------------------------------------------------
84  *
85  * The contents of the mode register are used to change the behavior of the CAN
86  * controller. Bits may be set or reset by the CPU which uses the control
87  * register as a read/write memory. Reserved bits are read as logic 0.
88  *
89  * Bit 0
90  * -----
91  * 0 normal; on the ‘1-to-0’ transition of the reset mode bit, the CAN
92  * controller returns to the operating mode
93  * 1 reset; detection of a set reset mode bit results in aborting the current
94  * transmission/reception of a message and entering the reset mode
95  *
96  * Bit 1
97  * -----
98  * 0 normal
99  * 1 listen only; in this mode the CAN controller would give no acknowledge
100  * to the CAN-bus, even if a message is received successfully; the error
101  * counters are stopped at the current value
102  *
103  * Bit 2
104  * -----
105  * 0 normal; an acknowledge is required for successful transmission
106  * 1 self test; in this mode a full node test is possible without any other
107  * active node on the bus using the self reception request command; the CAN
108  * controller will perform a successful transmission, even if there is no
109  * acknowledge received
110  *
111  * Bit 3
112  * -----
113  * 0 dual; the dual acceptance filter option is enabled (two filters, each
114  * with the length of 16 bit are active)
115  * 1 single; the single acceptance filter option is enabled (one filter with
116  * the length of 32 bit is active)
117  *
118  * Bit 4
119  * -----
120  * 0 wake-up; the CAN controller wakes up if sleeping
121  * 1 sleep; the CAN controller enters sleep mode if no CAN interrupt
122  * is pending and if there is no bus activity
123  */
124 
125 #define CAN_SLEEP_MODE 0x10
126 #define CAN_ACC_FILT_MASK 0x08
127 #define CAN_SELF_TEST_MODE 0x04
128 #define CAN_LISTEN_ONLY_MODE 0x02
129 #define CAN_RESET_REQUEST 0x01
130 #define CAN_MODE_DEF CAN_ACC_FILT_MASK
133 /* --- Interrupt Enable Register -----------------------------------------------
134  *
135  * The register allows to enable different types of interrupt sources which are
136  * indicated to the CPU. A value of 0 implies that the interrupt is disabled,
137  * while a value of 1 implies the interrupt is enabled.
138  *
139  * The interrupt enable register appears to the CPU as a read/write memory.
140  *
141  * Bit 0 : when the receive buffer status is 'full' the CAN controller requests
142  * the respective interrupt
143  * Bit 1 : when a message has been successfully transmitted or the transmit
144  * buffer is accessible again (e.g. after an abort transmission
145  * command), the CAN controller requests the respective interrupt
146  * Bit 2 : if the error or bus status change (see status register; Table 14),
147  * the CAN controller requests the respective interrupt
148  * Bit 3 : if the data overrun status bit is set (see status register; Table
149  * 14), the CAN controller requests the respective interrupt
150  * Bit 4 : if the sleeping CAN controller wakes up, the respective interrupt is
151  * requested
152  * Bit 5 : if the error status of the CAN controller changes from error active
153  * to error passive or vice versa, the respective interrupt is requested
154  * Bit 6 : if the CAN controller has lost arbitration, the respective interrupt
155  * is requested
156  * Bit 7 : if an bus error has been detected, the CAN controller requests the
157  * respective interrupt
158  */
159 
160 #define CAN_ERROR_BUSOFF_INT_ENABLE (1<<7)
162 #define CAN_ARBITR_LOST_INT_ENABLE (1<<6)
164 #define CAN_ERROR_PASSIVE_INT_ENABLE (1<<5)
166 #define CAN_WAKEUP_INT_ENABLE (1<<4)
168 #define CAN_OVERRUN_INT_ENABLE (1<<3)
170 #define CAN_ERROR_INT_ENABLE (1<<2)
172 #define CAN_TRANSMIT_INT_ENABLE (1<<1)
174 #define CAN_RECEIVE_INT_ENABLE (1<<0)
178 /* --- Frame information register ----------------------------------------------
179  *
180  * 0x00 : CAN message format = standard frame
181  *
182  * Bits 1 : Denotes the start of frame transmission
183  * Bits 11 : A (unique) identifier which also represents the message
184  * priority.
185  * Bits 1 : Must be dominant (0) for data frames and recessive (1) for
186  * remote request frames (see Remote Frame, below).
187  * Bits 1 : Must be dominant (0) for base frame format with 11-bit
188  * identifiers
189  * Bits 1 : Reserved bit. Must be dominant (0), but accepted as either
190  * dominant or recessive.
191  * Bits 4 : Number of bytes of data (0–8 bytes)[a]
192  * Bits 0–64 : Data to be transmitted (length in bytes dictated by DLC
193  * field)
194  * Bits 15 : Cyclic redundancy check
195  * Bits 1 : Must be recessive (1)
196  * Bits 1 : Transmitter sends recessive (1) and any receiver can assert
197  * a dominant (0)
198  * Bits 1 : ACK delimiter, Must be recessive (1)
199  * Bits 7 : End-of-frame (EOF), Must be recessive (1)
200  *
201  * 0x80 : CAN message format = extended frame
202  *
203  * Bits 1 : Denotes the start of frame transmission
204  * Bits 11 : First part of the (unique) identifier which also represents
205  * the message priority.
206  * Bits 1 : Must be recessive (1)
207  * Bits 1 : Must be recessive (1) for extended frame format with 29-bit
208  * identifiers.
209  * Bits 18 : Second part of the (unique) identifier which also represents
210  * the message priority.
211  * Bits 1 : Must be dominant (0) for data frames and recessive (1) for
212  * remote request frames (see Remote Frame, below).
213  * Bits 2 : Reserved bits which must be set dominant (0), but accepted
214  * as either dominant or recessive
215  * Bits 4 : Number of bytes of data (0–8 bytes)[a]
216  * Bits 0–64 : Data to be transmitted (length dictated by DLC field)
217  * Bits 15 : Cyclic redundancy check
218  * Bits 1 : Must be recessive (1)
219  * Bits 1 : Transmitter sends recessive (1) and any receiver can assert
220  * a dominant (0)
221  * Bits 1 : ACK delimiter, Must be recessive (1)
222  * Bits 7 : End-of-frame (EOF), Must be recessive (1)
223  */
224 
225 #define CAN_EFF 0x80
226 #define CAN_SFF 0x00
229 /* --- Command Register --------------------------------------------------------
230  *
231  * A command bit initiates an action within the transfer layer of the SJA1000.
232  * The command register appears to the microcontroller as a write only memory.
233  * If a read access is performed to this address the byte '11111111' is
234  * returned. Between two commands at least one internal clock cycle is needed to
235  * process. The internal clock is divided by two from the external oscillator
236  * frequency.
237  *
238  * Note: For bits 0-3, if the value is set to 0, no action is performed.
239  *
240  * Bit 0 : If set to 0, no action is performed. If set to 1, a message will be
241  * transmitted.
242  * Bit 1 : If set to 0, no action is performed. If set to 1, if not already in
243  * progress, a pending transmission request is cancelled.
244  * Bit 2 : If set to 0, no action is performed. If set to 1, the receive buffer,
245  * representing the message memory space in the RXFIFO is released.
246  * Bit 3 : If set to 0, no action is performed. If set to 1, the data overrun
247  * status bit is cleared.
248  * Bit 4 : If set to 0, the SJA1000 wakes up, i.e. operates normally. If set to
249  * 1, the SJA1000 enters sleep mode if no CAN interrupt is pending and
250  * there is no bus activity
251  */
252 
253 #define CAN_GOTO_SLEEP (1<<4)
255 #define CAN_CLEAR_OVERRUN_STATUS (1<<3)
257 #define CAN_RELEASE_RECEIVE_BUFFER (1<<2)
259 #define CAN_ABORT_TRANSMISSION (1<<1)
261 #define CAN_TRANSMISSION_REQUEST (1<<0)
265 /* --- Status Register ---------------------------------------------------------
266  *
267  * The content of the status register reflects the status of the SJA1000. The
268  * status register appears to the microcontroller as a read only memory.
269  *
270  * Bit 0
271  * -----
272  * 0 empty; no message is available
273  * 1 full; one or more messages are available in the RXFIFO
274  *
275  * Bit 1
276  * -----
277  * 0 absent; no data overrun has occurred since the last clear data overrun
278  * command was given
279  * 1 overrun; a message was lost because there was not enough space for that
280  * message in the RXFIFO
281  *
282  * Bit 2
283  * -----
284  * 0 locked; the CPU cannot access the transmit buffer; a message is waiting
285  * for transmission or is already in process
286  * 1 released; the CPU may write a message into the transmit buffer
287  *
288  * Bit 3
289  * -----
290  * 0 incomplete; the previously requested transmission is not yet completed
291  * 1 complete; the last requested transmission has been successfully
292  * completed
293  *
294  * Bit 4
295  * -----
296  * 0 idle; no receive message is in progress
297  * 1 receive; the SJA1000 is receiving a messages
298  *
299  * Bit 5
300  * -----
301  * 0 idle; no transmit message is in progress
302  * 1 transmit; the SJA1000 is transmitting a message
303  *
304  * Bit 6
305  * -----
306  * 0 ok; both error counters are below the warning limit
307  * 1 error; at least one of the error counters has reached or exceeded the
308  * CPU warning limit
309  *
310  * Bit 7
311  * -----
312  * 0 bus-on; the SJA1000 is involved in bus activities
313  * 1 bus-off; the SJA1000 is not involved in bus activities
314  */
315 
316 #define CAN_BUS_STATUS (1<<7)
318 #define CAN_ERROR_STATUS (1<<6)
320 #define CAN_TRANSMIT_STATUS (1<<5)
322 #define CAN_RECEIVE_STATUS (1<<4)
324 #define CAN_TRANSMISSION_COMPLETE_STATUS (1<<3)
326 #define CAN_TRANSMIT_BUFFER_ACCESS (1<<2)
328 #define CAN_DATA_OVERRUN (1<<1)
330 #define CAN_RECEIVE_BUFFER_STATUS (1<<0)
334 /* --- Interrupt Register ------------------------------------------------------
335  *
336  * Bit 0
337  * -----
338  * 0 reset; this bit is cleared by any read access of the microcontroller
339  * 1 set; this bit is set while the receive FIFO is not empty and the receive
340  * interrupt enable bit is set to logic 1 (enabled)
341  *
342  * Bit 1
343  * -----
344  * 0 reset; this bit is cleared by any read access of the microcontroller
345  * 1 set; this bit is set whenever the transmit buffer status changes from
346  * logic 0 to logic 1 (released) and transmit interrupt enable is set to
347  * logic 1 (enabled)
348  *
349  * Bit 2
350  * -----
351  * 0 reset; this bit is cleared by any read access of the microcontroller
352  * 1 set; this bit is set on a change of either the error status or bus
353  * status bits if the error interrupt enable is set to logic 1 (enabled)
354  *
355  * Bit 3
356  * -----
357  * 0 reset; this bit is cleared by any read access of the microcontroller
358  * 1 set; this bit is set on a ‘0-to-1’ transition of the data overrun status
359  * bit, when the data overrun interrupt enable is set to logic 1 (enabled)
360  *
361  * Bit 4
362  * -----
363  * 0 reset; this bit is cleared by any read access of the microcontroller
364  * 1 set; this bit is set when the sleep mode is left
365  */
366 
367 #define CAN_WAKEUP_INT (1<<4)
369 #define CAN_OVERRUN_INT (1<<3)
371 #define CAN_ERROR_INT (1<<2)
373 #define CAN_TRANSMIT_INT (1<<1)
375 #define CAN_RECEIVE_INT (1<<0)
379 /* --- Output Control Register -------------------------------------------------
380  *
381  * 7 6 5 4 3 2 1 0
382  * OCTP1 OCTN1 OCPOL1 OCTP0 OCTN0 OCPOL0 OCMODE1 OCMODE0
383  * ---------------------- ---------------------- ---------------
384  * TX1 Output TX0 Output Programmable
385  * Driver Control Driver Control Output Functions
386  *
387  * MODE
388  * OCMODE1 OCMODE0
389  * 0 1 Normal Mode; TX0, TX1 bit sequence TXData
390  * 1 1 Normal Mode; TX0 bit sequence, TX1 busclock TXCLK
391  * 0 0 Biphase Mode
392  * 1 0 Test Mode; TX0 bit sequence, TX1 COMPOUT
393  *
394  * In normal Mode Voltage Output Levels depend on Driver Characteristic: OCTPx,
395  * OCTNx and programmed Output Polarity: OCPOLx
396  *
397  * Driver Characteristic
398  * OCTPx OCTNx
399  * 0 0 always Floating Outputs,
400  * 0 1 Pull Down
401  * 1 0 Pull Up
402  * 1 1 Push Pull
403  */
404 
405 #define CAN_OCTP1 (1<<7)
407 #define CAN_OCTN1 (1<<6)
409 #define CAN_OCPOL1 (1<<5)
411 #define CAN_OCTP0 (1<<4)
413 #define CAN_OCTN0 (1<<3)
415 #define CAN_OCPOL0 (1<<2)
417 #define CAN_OCMODE1 (1<<1)
419 #define CAN_OCMODE0 (1<<0)
423 /* --- Clock Divider Register --------------------------------------------------
424  *
425  * The clock divider register controls the CLKOUT frequency for the
426  * microcontroller and allows to deactivate the CLKOUT pin. Additionally a
427  * dedicated receive interrupt pulse on TX1, a receive comparator bypass and the
428  * selection between BasicCAN mode and PeliCAN mode is made here. The default
429  * state of the register after hardware reset is divide-by-12 for Motorola mode
430  * (00000101) and divide-by-2 for Intel mode (00000000).
431  *
432  * On software reset (reset request/reset mode) this register is not influenced.
433  *
434  * The reserved bit (CDR.4) will always reflect a logic 0. The application
435  * software should always write a logic 0 to this bit in order to be compatible
436  * with future features, which may be 1-active using this bit.
437  */
438 
439 #define CAN_MODE_BASICCAN (0x00)
440 #define CAN_MODE_PELICAN (0xC0)
442 /* Original code from can4linux only used CAN_MODE_CLK, which was
443  * defined to the CAN_MODE_CLK1 value shown here. */
444 #define CAN_MODE_CLK1 (0x07)
445 #define CAN_MODE_CLK2 (0x00)
448 #define CAN_MODE_CLK CAN_MODE_CLK2
449 
450 
458 # define CAN_RTR (1<<6)
459 
460 
461 /* these timings are valid for clock 8Mhz */
462 
463 #define CAN_TIM0_10K 49
464 #define CAN_TIM1_10K 0x1c
465 #define CAN_TIM0_20K 24
466 #define CAN_TIM1_20K 0x1c
467 #define CAN_TIM0_40K 0x89
468 #define CAN_TIM1_40K 0xEB
469 #define CAN_TIM0_50K 9
470 #define CAN_TIM1_50K 0x1c
471 #define CAN_TIM0_100K 4
472 #define CAN_TIM1_100K 0x1c
473 #define CAN_TIM0_125K 3
474 #define CAN_TIM1_125K 0x1c
475 #define CAN_TIM0_250K 1
476 #define CAN_TIM1_250K 0x1c
477 #define CAN_TIM0_500K 0
478 #define CAN_TIM1_500K 0x1c
479 #define CAN_TIM0_800K 0
480 #define CAN_TIM1_800K 0x16
481 #define CAN_TIM0_1000K 0
482 #define CAN_TIM1_1000K 0x14
485 /* External structures may not be used, declared in can_dev.c for compatibility
486  * with can4linux sja1000.cpp.
487  *
488  * For PATH driver, each channel has a separate driver, so MAX_CHANNELS is 1
489  */
490 #define MAX_CHANNELS 1
491 #define MY_CHANNEL 0
492 
497 #define DBGprint(ms,ar) { }
498 #define DBGin() { }
499 #define DBGout() { }
500 #define DEBUG_TTY(n, args...)
501 extern unsigned int dbgMask;
502 
504 typedef struct CanStatusPar {
505  unsigned int baud;
506  unsigned int status;
507  unsigned int error_warning_limit;
508  unsigned int rx_errors;
509  unsigned int tx_errors;
510  unsigned int error_code;
511  unsigned int rx_buffer_size;
512  unsigned int rx_buffer_used;
513  unsigned int tx_buffer_size;
514  unsigned int tx_buffer_used;
515  unsigned long retval;
517 
523 struct inode {
524  int dummy;
525 };
526 
528  int rx_index;
529 };
530 
531 struct file {
532  void *private_data;
533 };
534 
535 #define MSG_ACTIVE (0)
536 #define MSG_BASE (0)
537 #define MSG_RTR (1<<0)
538 #define MSG_OVR (1<<1)
539 #define MSG_EXT (1<<2)
540 #define MSG_SELF (1<<3)
541 #define MSG_PASSIVE (1<<4)
542 #define MSG_BUSOFF (1<<5)
543 #define MSG_WARNING (1<<6)
544 #define MSG_BOVR (1<<7)
547 #define MSG_ERR_MASK (MSG_OVR+MSG_PASSIVE+MSG_BUSOFF+MSG_BOVR+MSG_WARNING)
548 
549 /* valid bits in CAN ID for frame formats */
550 #define CAN_SFF_MASK 0x000007FFU
551 #define CAN_EFF_MASK 0x1FFFFFFFU
552 #define CANDRIVERERROR 0xFFFFFFFFul
555 /* Bogus definitions to get simplest case to make Linux ISR in sja1000.cpp
556  * compile -- not used. */
557 #define LINUX_VERSION_CODE 1
558 #define KERNEL_VERSION(X,Y,Z) 0
559 typedef int irqreturn_t;
560 #define IRQ_NONE 0
561 #define IRQ_HANDLED 1
562 #define IRQ_RETVAL(x) (x)
563 
564 
565 /* -------------------------------------------------------------------------- */
566 /* -------------------- Imported from sja1000/can_dev.h --------------------- */
567 /* -------------------------------------------------------------------------- */
568 
571 extern canregs_t *can_base_addr;
572 
575 static inline unsigned char can_read_reg(BYTE *addr)
576 {
577  volatile BYTE *preg = (volatile BYTE*) (addr);
578  return *preg;
579 }
580 
583 static inline void can_write_reg(BYTE *addr, BYTE value)
584 {
585  volatile BYTE *preg = (volatile BYTE*) (addr);
586  *preg = value;
587 }
588 
593 static inline void can_set_reg(BYTE *addr, BYTE mask)
594 {
595  volatile BYTE *preg = (volatile BYTE*) (addr);
596  *preg |= mask;
597 }
598 
603 static inline void can_reset_reg(BYTE *addr, BYTE mask)
604 {
605  volatile BYTE *preg = (volatile BYTE *) (addr);
606  *preg &= ~(mask);
607 }
608 
609 /* Board access macros, as used in can4linux, rely on a packed structure for
610  * canregs_t that mirrors the offsets of the actual registers.
611  *
612  * Unlike can4linux, each instance of the can_man resource manager corresponds
613  * to one SJA 1000 chip and one CAN port. Unused bd (board) parameter to macros
614  * is retained for compatibility in sja1000.cpp.
615  */
616 #define CANin(bd,adr) can_read_reg(&can_base_addr->adr)
617 #define CANout(bd,adr,v) can_write_reg(&can_base_addr->adr, v)
618 #define CANset(bd,adr,m) can_set_reg(&can_base_addr->adr, m)
619 #define CANreset(bd,adr,m) can_reset_reg(&can_base_addr->adr, m)
620 
621 
622 #ifdef CPC_PCI
623 #define R_OFF 4 /* offset 4 for the EMS CPC-PCI card */
624 #else
625 #define R_OFF 1
626 #endif
627 
628 #endif /* INCLUDE_CAN_SJA1000_H_ */
unsigned int baud
Definition: sja1000.h:505
unsigned int error_warning_limit
Definition: sja1000.h:507
BYTE canxdata[8]
Definition: sja1000.h:41
BYTE cantim0
Definition: sja1000.h:63
unsigned int rx_errors
Definition: sja1000.h:508
BYTE canirq
Definition: sja1000.h:60
struct CanStatusPar CanStatusPar_t
BYTE frameinfo
Definition: sja1000.h:73
BYTE reserved3
Definition: sja1000.h:75
BYTE rxerror
Definition: sja1000.h:71
BYTE reserved2
Definition: sja1000.h:67
Definition: sja1000.h:504
unsigned int rx_buffer_size
Definition: sja1000.h:511
Definition: sja1000.h:523
BYTE canoutc
Definition: sja1000.h:65
struct frame::@2 extframe
unsigned int error_code
Definition: sja1000.h:510
BYTE errorcode
Definition: sja1000.h:69
BYTE canid3
Definition: sja1000.h:39
BYTE canid2
Definition: sja1000.h:38
BYTE cantest
Definition: sja1000.h:66
unsigned char BYTE
Definition: common.h:39
BYTE canid4
Definition: sja1000.h:40
BYTE txerror
Definition: sja1000.h:72
BYTE cantim1
Definition: sja1000.h:64
BYTE reserved1
Definition: sja1000.h:62
BYTE errorwarninglimit
Definition: sja1000.h:70
BYTE candata[8]
Definition: sja1000.h:46
BYTE canid1
Definition: sja1000.h:37
unsigned int tx_buffer_used
Definition: sja1000.h:514
BYTE canrxbufferadr
Definition: sja1000.h:76
struct canregs __attribute__((packed)) canregs_t
BYTE canstat
Definition: sja1000.h:59
canregs_t * can_base_addr
Definition: can_dev.cpp:22
BYTE cancmd
Definition: sja1000.h:58
Definition: sja1000.h:527
unsigned long retval
Definition: sja1000.h:515
unsigned int tx_buffer_size
Definition: sja1000.h:513
BYTE canirq_enable
Definition: sja1000.h:61
BYTE canclk
Definition: sja1000.h:77
Definition: sja1000.h:35
BYTE canmode
Definition: sja1000.h:57
unsigned int tx_errors
Definition: sja1000.h:509
struct frame::@3 stdframe
Definition: sja1000.h:56
unsigned int rx_buffer_used
Definition: sja1000.h:512
BYTE arbitrationlost
Definition: sja1000.h:68
Definition: sja1000.h:531
unsigned int status
Definition: sja1000.h:506