]> rtime.felk.cvut.cz Git - lincan.git/blobdiff - lincan/src/i82527.c
Actual driver code for directly mapped SJA1000 into PCI mem region 0.
[lincan.git] / lincan / src / i82527.c
index caed3d9f6f73253669b7bc899cb8c5ad8989cda1..635dfc7b7f8d5fd93488e91e6719078cd0ede6d0 100644 (file)
@@ -37,7 +37,7 @@
 #include "../include/main.h"
 #include "../include/i82527.h"
 
-void i82527_irq_rtr_handler(struct canchip_t *chip, struct msgobj_t *obj, 
+void i82527_irq_rtr_handler(struct canchip_t *chip, struct msgobj_t *obj,
                            struct rtr_id *rtr_search, unsigned long message_id);
 
 
@@ -70,7 +70,7 @@ int i82527_enable_configuration(struct canchip_t *chip)
 
        flags = can_read_reg(chip, iCTL) & (iCTL_IE|iCTL_SIE|iCTL_EIE);
        can_write_reg(chip, flags|iCTL_CCE, iCTL);
-       
+
        return 0;
 }
 
@@ -88,11 +88,11 @@ int i82527_chip_config(struct canchip_t *chip)
 {
        can_write_reg(chip,chip->int_cpu_reg,iCPU); // Configure cpu interface
        can_write_reg(chip,(iCTL_CCE|iCTL_INI),iCTL); // Enable configuration
-       i82527_seg_write_reg(chip,chip->int_clk_reg,iCLK); // Set clock out slew rates 
+       i82527_seg_write_reg(chip,chip->int_clk_reg,iCLK); // Set clock out slew rates
        i82527_seg_write_reg(chip,chip->int_bus_reg,iBUS); /* Bus configuration */
        can_write_reg(chip,0x00,iSTAT); /* Clear error status register */
 
-       /* Check if we can at least read back some arbitrary data from the 
+       /* Check if we can at least read back some arbitrary data from the
         * card. If we can not, the card is not properly configured!
         */
        canobj_write_reg(chip,chip->msgobj[1],0x25,iMSGDAT1);
@@ -152,7 +152,7 @@ int i82527_baud_rate(struct canchip_t *chip, int rate, int clock, int sjw,
        int best_error = 1000000000, error;
        int best_tseg=0, best_brp=0, best_rate=0, brp=0;
        int tseg=0, tseg1=0, tseg2=0;
-       
+
        if (i82527_enable_configuration(chip))
                return -ENODEV;
 
@@ -186,7 +186,7 @@ int i82527_baud_rate(struct canchip_t *chip, int rate, int clock, int sjw,
                tseg2 = 0;
        if (tseg2 > MAX_TSEG2)
                tseg2 = MAX_TSEG2;
-       
+
        tseg1 = best_tseg-tseg2-2;
        if (tseg1>MAX_TSEG1) {
                tseg1 = MAX_TSEG1;
@@ -197,13 +197,13 @@ int i82527_baud_rate(struct canchip_t *chip, int rate, int clock, int sjw,
        DEBUGMSG("brp=%d, best_tseg=%d, tseg1=%d, tseg2=%d, sampl_pt=%d\n",
                                        best_brp, best_tseg, tseg1, tseg2,
                                        (100*(best_tseg-tseg2)/(best_tseg+1)));
-                                       
-                               
+
+
        i82527_seg_write_reg(chip, sjw<<6 | best_brp, iBT0);
        can_write_reg(chip, ((flags & BTR1_SAM) != 0)<<7 | tseg2<<4 | tseg1,
                                                                iBT1);
        DEBUGMSG("Writing 0x%x to iBT0\n",(sjw<<6 | best_brp));
-       DEBUGMSG("Writing 0x%x to iBT1\n",((flags & BTR1_SAM) != 0)<<7 | 
+       DEBUGMSG("Writing 0x%x to iBT1\n",((flags & BTR1_SAM) != 0)<<7 |
                                                        tseg2<<4 | tseg1);
 
        i82527_disable_configuration(chip);
@@ -217,7 +217,7 @@ int i82527_standard_mask(struct canchip_t *chip, unsigned short code, unsigned s
 
        mask0 = (unsigned char) (mask >> 3);
        mask1 = (unsigned char) (mask << 5);
-       
+
        can_write_reg(chip,mask0,iSGM0);
        can_write_reg(chip,mask1,iSGM1);
 
@@ -293,7 +293,7 @@ int i82527_clear_objects(struct canchip_t *chip)
                DEBUGMSG("All message ID's set to standard\n");
        else
                DEBUGMSG("All message ID's set to extended\n");
-       
+
        return 0;
 }
 
@@ -337,7 +337,7 @@ int i82527_pre_write_config(struct canchip_t *chip, struct msgobj_t *obj,
 {
        int i=0,id0=0,id1=0,id2=0,id3=0;
        int len;
-       
+
        len = msg->length;
        if(len > CAN_MSG_LENGTH) len = CAN_MSG_LENGTH;
 
@@ -403,7 +403,7 @@ int i82527_remote_request(struct canchip_t *chip, struct msgobj_t *obj)
 {
        canobj_write_reg(chip,obj,(MVAL_SET|TXIE_RES|RXIE_SET|INTPD_RES),iMSGCTL0);
        canobj_write_reg(chip,obj,(RMPD_RES|TXRQ_SET|MLST_RES|NEWD_RES),iMSGCTL1);
-       
+
        return 0;
 }
 
@@ -427,7 +427,7 @@ int i82527_start_chip(struct canchip_t *chip)
 
        flags = can_read_reg(chip, iCTL) & (iCTL_IE|iCTL_SIE|iCTL_EIE);
        can_write_reg(chip, flags, iCTL);
-       
+
        return 0;
 }
 
@@ -454,7 +454,7 @@ int i82527_release_chip(struct canchip_t *chip)
        return 0;
 }
 
-static inline 
+static inline
 void i82527_irq_write_handler(struct canchip_t *chip, struct msgobj_t *obj)
 {
        int cmd;
@@ -502,11 +502,11 @@ void i82527_irq_read_handler(struct canchip_t *chip, struct msgobj_t *obj, int o
        int i;
        unsigned long message_id;
        int msgcfg, msgctl1;
-       
+
        msgctl1=canobj_read_reg(chip,obj,iMSGCTL1);
        if(msgctl1 & NEWD_RES)
                return;
-       
+
        do {
                if(objnum != 14) {
                        canobj_write_reg(chip,obj,(RMPD_RES|TXRQ_RES|MLST_UNC|NEWD_RES),iMSGCTL1);
@@ -539,7 +539,7 @@ void i82527_irq_read_handler(struct canchip_t *chip, struct msgobj_t *obj, int o
                for (i=0; i < obj->rx_msg.length; i++)
                        obj->rx_msg.data[i] = canobj_read_reg(chip,obj,iMSGDAT0+i);
 
-               
+
                if(objnum != 14) {
                        /* if NEWD is set after data read, then read data are likely inconsistent */
                        msgctl1=canobj_read_reg(chip,obj,iMSGCTL1);
@@ -554,21 +554,21 @@ void i82527_irq_read_handler(struct canchip_t *chip, struct msgobj_t *obj, int o
                        canobj_write_reg(chip,obj,(RMPD_RES|TXRQ_RES|MLST_UNC|NEWD_RES),iMSGCTL1);
                        msgctl1=canobj_read_reg(chip,obj,iMSGCTL1);
                }
-               
+
 
                /* fill CAN message timestamp */
                can_filltimestamp(&obj->rx_msg.timestamp);
 
                canque_filter_msg2edges(obj->qends, &obj->rx_msg);
-               
+
                if (msgctl1 & NEWD_SET)
                        continue;
-               
+
                if (msgctl1 & MLST_SET) {
                        canobj_write_reg(chip,obj,(RMPD_UNC|TXRQ_UNC|MLST_RES|NEWD_UNC),iMSGCTL1);
                        CANMSG("i82527_irq_read_handler: object %d message lost\n",objnum);
                }
-               
+
                return;
 
        } while(1);
@@ -599,11 +599,11 @@ void i82527_irq_read_handler(struct canchip_t *chip, struct msgobj_t *obj, int o
                        if ((rtr_search!=NULL) && (rtr_search->id==message_id))
                                i82527_irq_rtr_handler(chip, obj, rtr_search, message_id);
                        else
-                               i82527_irq_read_handler(chip, obj, message_id); 
+                               i82527_irq_read_handler(chip, obj, message_id);
 */
 
 
-static inline 
+static inline
 void i82527_irq_update_filter(struct canchip_t *chip, struct msgobj_t *obj)
 {
        struct canfilt_t filt;
@@ -687,16 +687,16 @@ int i82527_irq_handler(int irq, struct canchip_t *chip)
                        CANMSG("i82527_irq_register 0x%x\n",irq_register);
                        return CANCHIP_IRQ_STUCK;
                }
-               
+
                DEBUGMSG("i82527: iIRQ 0x%02x\n",irq_register);
-               
+
                if (irq_register == 0x01) {
                        status_register=can_read_reg(chip, iSTAT);
                        CANMSG("Status register: 0x%x\n",status_register);
                        continue;
                        /*return CANCHIP_IRQ_NONE;*/
                }
-               
+
                if (irq_register == 0x02)
                        object = 14;
                else if(irq_register <= 13+3)
@@ -705,17 +705,17 @@ int i82527_irq_handler(int irq, struct canchip_t *chip)
                        return CANCHIP_IRQ_NONE;
 
                obj=chip->msgobj[object];
-               
+
                msgcfg = canobj_read_reg(chip,obj,iMSGCFG);
                if (msgcfg & MCFG_DIR) {
                        can_msgobj_set_fl(obj,TX_REQUEST);
-                       
+
                        /* calls i82527_irq_write_handler synchronized with other invocations */
                        if(i82527_irq_sync_activities(chip, obj)<=0){
                                /* The interrupt has to be cleared anyway */
                                canobj_write_reg(chip,obj,(MVAL_UNC|TXIE_UNC|RXIE_UNC|INTPD_RES),iMSGCTL0);
 
-                               /* 
+                               /*
                                 * Rerun for case, that parallel activity on SMP or fully-preemptive
                                 * kernel result in preparation and finished sending of message
                                 * between above if and canobj_write_reg.
@@ -723,11 +723,11 @@ int i82527_irq_handler(int irq, struct canchip_t *chip)
                                i82527_irq_sync_activities(chip, obj);
                        }
                }
-               else { 
+               else {
 
-                       i82527_irq_read_handler(chip, obj, object); 
+                       i82527_irq_read_handler(chip, obj, object);
                }
-               
+
        } while((irq_register=i82527_seg_read_reg(chip, iIRQ)) != 0);
 
        return CANCHIP_IRQ_HANDLED;
@@ -740,14 +740,14 @@ void i82527_irq_rtr_handler(struct canchip_t *chip, struct msgobj_t *obj,
 
        canobj_write_reg(chip,obj,(MVAL_RES|TXIE_RES|RXIE_RES|INTPD_RES),iMSGCTL0);
        canobj_write_reg(chip,obj,(RMPD_RES|TXRQ_RES|MLST_RES|NEWD_RES),iMSGCTL1);
-       
+
        can_spin_lock(&hardware_p->rtr_lock);
 
        rtr_search->rtr_message->id=message_id;
        rtr_search->rtr_message->length=(canobj_read_reg(chip,obj,iMSGCFG) & 0xf0)>>4;
        for (i=0; i<rtr_search->rtr_message->length; i++)
                rtr_search->rtr_message->data[i]=canobj_read_reg(chip,obj,iMSGDAT0+i);
-       
+
        can_spin_unlock(&hardware_p->rtr_lock);
 
        if (waitqueue_active(&rtr_search->rtr_wq))
@@ -768,7 +768,7 @@ void i82527_irq_rtr_handler(struct canchip_t *chip, struct msgobj_t *obj,
 int i82527_wakeup_tx(struct canchip_t *chip, struct msgobj_t *obj)
 {
        can_preempt_disable();
-       
+
        can_msgobj_set_fl(obj,TX_REQUEST);
 
        /* calls i82527_irq_write_handler synchronized with other invocations
@@ -782,7 +782,7 @@ int i82527_wakeup_tx(struct canchip_t *chip, struct msgobj_t *obj)
 int i82527_filtch_rq(struct canchip_t *chip, struct msgobj_t *obj)
 {
        can_preempt_disable();
-       
+
        can_msgobj_set_fl(obj,FILTCH_REQUEST);
 
        /* setups filter synchronized with other invocations from kernel and IRQ context */