fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / arch / mips / sibyte / sb1250 / bcm1250_tbprof.c
index d3d5930..d1a906e 100644 (file)
@@ -28,6 +28,8 @@
 #include <linux/fs.h>
 #include <linux/errno.h>
 #include <linux/reboot.h>
+#include <linux/smp_lock.h>
+#include <linux/wait.h>
 #include <asm/uaccess.h>
 #include <asm/io.h>
 #include <asm/sibyte/sb1250.h>
@@ -69,11 +71,12 @@ static void arm_tb(void)
        /* Unfortunately, in Pass 2 we must clear all counters to knock down
           a previous interrupt request.  This means that bus profiling
           requires ALL of the SCD perf counters. */
-       __raw_writeq((scdperfcnt & ~M_SPC_CFG_SRC1) | // keep counters 0,2,3 as is
-                  M_SPC_CFG_ENABLE |            // enable counting
-                  M_SPC_CFG_CLEAR |             // clear all counters
-                  V_SPC_CFG_SRC1(1),            // counter 1 counts cycles
-             IOADDR(A_SCD_PERF_CNT_CFG));
+       __raw_writeq((scdperfcnt & ~M_SPC_CFG_SRC1) |
+                                               // keep counters 0,2,3 as is
+                    M_SPC_CFG_ENABLE |         // enable counting
+                    M_SPC_CFG_CLEAR |          // clear all counters
+                    V_SPC_CFG_SRC1(1),         // counter 1 counts cycles
+                    IOADDR(A_SCD_PERF_CNT_CFG));
        __raw_writeq(next, IOADDR(A_SCD_PERF_CNT_1));
        /* Reset the trace buffer */
        __raw_writeq(M_SCD_TRACE_CFG_RESET, IOADDR(A_SCD_TRACE_CFG));
@@ -85,7 +88,7 @@ static void arm_tb(void)
        sbp.tb_armed = 1;
 }
 
-static irqreturn_t sbprof_tb_intr(int irq, void *dev_id, struct pt_regs *regs)
+static irqreturn_t sbprof_tb_intr(int irq, void *dev_id)
 {
        int i;
        DBG(printk(DEVNAME ": tb_intr\n"));
@@ -93,22 +96,30 @@ static irqreturn_t sbprof_tb_intr(int irq, void *dev_id, struct pt_regs *regs)
                /* XXX should use XKPHYS to make writes bypass L2 */
                u_int64_t *p = sbp.sbprof_tbbuf[sbp.next_tb_sample++];
                /* Read out trace */
-               __raw_writeq(M_SCD_TRACE_CFG_START_READ, IOADDR(A_SCD_TRACE_CFG));
+               __raw_writeq(M_SCD_TRACE_CFG_START_READ,
+                            IOADDR(A_SCD_TRACE_CFG));
                __asm__ __volatile__ ("sync" : : : "memory");
                /* Loop runs backwards because bundles are read out in reverse order */
                for (i = 256 * 6; i > 0; i -= 6) {
                        // Subscripts decrease to put bundle in the order
                        //   t0 lo, t0 hi, t1 lo, t1 hi, t2 lo, t2 hi
-                       p[i-1] = __raw_readq(IOADDR(A_SCD_TRACE_READ)); // read t2 hi
-                       p[i-2] = __raw_readq(IOADDR(A_SCD_TRACE_READ)); // read t2 lo
-                       p[i-3] = __raw_readq(IOADDR(A_SCD_TRACE_READ)); // read t1 hi
-                       p[i-4] = __raw_readq(IOADDR(A_SCD_TRACE_READ)); // read t1 lo
-                       p[i-5] = __raw_readq(IOADDR(A_SCD_TRACE_READ)); // read t0 hi
-                       p[i-6] = __raw_readq(IOADDR(A_SCD_TRACE_READ)); // read t0 lo
+                       p[i - 1] = __raw_readq(IOADDR(A_SCD_TRACE_READ));
+                                                               // read t2 hi
+                       p[i - 2] = __raw_readq(IOADDR(A_SCD_TRACE_READ));
+                                                               // read t2 lo
+                       p[i - 3] = __raw_readq(IOADDR(A_SCD_TRACE_READ));
+                                                               // read t1 hi
+                       p[i - 4] = __raw_readq(IOADDR(A_SCD_TRACE_READ));
+                                                               // read t1 lo
+                       p[i - 5] = __raw_readq(IOADDR(A_SCD_TRACE_READ));
+                                                               // read t0 hi
+                       p[i - 6] = __raw_readq(IOADDR(A_SCD_TRACE_READ));
+                                                               // read t0 lo
                }
                if (!sbp.tb_enable) {
                        DBG(printk(DEVNAME ": tb_intr shutdown\n"));
-                       __raw_writeq(M_SCD_TRACE_CFG_RESET, IOADDR(A_SCD_TRACE_CFG));
+                       __raw_writeq(M_SCD_TRACE_CFG_RESET,
+                                    IOADDR(A_SCD_TRACE_CFG));
                        sbp.tb_armed = 0;
                        wake_up(&sbp.tb_sync);
                } else {
@@ -127,7 +138,7 @@ static irqreturn_t sbprof_tb_intr(int irq, void *dev_id, struct pt_regs *regs)
        return IRQ_HANDLED;
 }
 
-static irqreturn_t sbprof_pc_intr(int irq, void *dev_id, struct pt_regs *regs)
+static irqreturn_t sbprof_pc_intr(int irq, void *dev_id)
 {
        printk(DEVNAME ": unexpected pc_intr");
        return IRQ_NONE;
@@ -154,10 +165,8 @@ int sbprof_zbprof_start(struct file *filp)
        scdperfcnt = __raw_readq(IOADDR(A_SCD_PERF_CNT_CFG));
        /* Disable and clear counters, override SRC_1 */
        __raw_writeq((scdperfcnt & ~(M_SPC_CFG_SRC1 | M_SPC_CFG_ENABLE)) |
-                  M_SPC_CFG_ENABLE |
-                  M_SPC_CFG_CLEAR |
-                  V_SPC_CFG_SRC1(1),
-             IOADDR(A_SCD_PERF_CNT_CFG));
+                    M_SPC_CFG_ENABLE | M_SPC_CFG_CLEAR | V_SPC_CFG_SRC1(1),
+                    IOADDR(A_SCD_PERF_CNT_CFG));
 
        /* We grab this interrupt to prevent others from trying to use
            it, even though we don't want to service the interrupts
@@ -172,7 +181,8 @@ int sbprof_zbprof_start(struct file *filp)
           pass them through.  I am exploiting my knowledge that
           cp0_status masks out IP[5]. krw */
        __raw_writeq(K_INT_MAP_I3,
-                    IOADDR(A_IMR_REGISTER(0, R_IMR_INTERRUPT_MAP_BASE) + (K_INT_PERF_CNT<<3)));
+                    IOADDR(A_IMR_REGISTER(0, R_IMR_INTERRUPT_MAP_BASE) +
+                           (K_INT_PERF_CNT << 3)));
 
        /* Initialize address traps */
        __raw_writeq(0, IOADDR(A_ADDR_TRAP_UP_0));
@@ -203,10 +213,11 @@ int sbprof_zbprof_start(struct file *filp)
 
        /* Initialize Trace Sequence 0-7 */
        //                                   Start on event 0 (interrupt)
-       __raw_writeq(V_SCD_TRSEQ_FUNC_START|0x0fff,
+       __raw_writeq(V_SCD_TRSEQ_FUNC_START | 0x0fff,
                     IOADDR(A_SCD_TRACE_SEQUENCE_0));
        //                        dsamp when d used | asamp when a used
-       __raw_writeq(M_SCD_TRSEQ_ASAMPLE|M_SCD_TRSEQ_DSAMPLE|K_SCD_TRSEQ_TRIGGER_ALL,
+       __raw_writeq(M_SCD_TRSEQ_ASAMPLE | M_SCD_TRSEQ_DSAMPLE |
+                    K_SCD_TRSEQ_TRIGGER_ALL,
                     IOADDR(A_SCD_TRACE_SEQUENCE_1));
        __raw_writeq(0, IOADDR(A_SCD_TRACE_SEQUENCE_2));
        __raw_writeq(0, IOADDR(A_SCD_TRACE_SEQUENCE_3));
@@ -216,7 +227,8 @@ int sbprof_zbprof_start(struct file *filp)
        __raw_writeq(0, IOADDR(A_SCD_TRACE_SEQUENCE_7));
 
        /* Now indicate the PERF_CNT interrupt as a trace-relevant interrupt */
-       __raw_writeq((1ULL << K_INT_PERF_CNT), IOADDR(A_IMR_REGISTER(0, R_IMR_INTERRUPT_TRACE)));
+       __raw_writeq(1ULL << K_INT_PERF_CNT,
+                    IOADDR(A_IMR_REGISTER(0, R_IMR_INTERRUPT_TRACE)));
 
        arm_tb();
 
@@ -227,6 +239,7 @@ int sbprof_zbprof_start(struct file *filp)
 
 int sbprof_zbprof_stop(void)
 {
+       DEFINE_WAIT(wait);
        DBG(printk(DEVNAME ": stopping\n"));
 
        if (sbp.tb_enable) {
@@ -236,7 +249,9 @@ int sbprof_zbprof_stop(void)
                   this sleep happens. */
                if (sbp.tb_armed) {
                        DBG(printk(DEVNAME ": wait for disarm\n"));
-                       interruptible_sleep_on(&sbp.tb_sync);
+                       prepare_to_wait(&sbp.tb_sync, &wait, TASK_INTERRUPTIBLE);
+                       schedule();
+                       finish_wait(&sbp.tb_sync, &wait);
                        DBG(printk(DEVNAME ": disarm complete\n"));
                }
                free_irq(K_INT_TRACE_FREEZE, &sbp);
@@ -329,13 +344,13 @@ static ssize_t sbprof_tb_read(struct file *filp, char *buf,
        return count;
 }
 
-static int sbprof_tb_ioctl(struct inode *inode,
-                          struct file *filp,
-                          unsigned int command,
-                          unsigned long arg)
+static long sbprof_tb_ioctl(struct file *filp,
+                           unsigned int command,
+                           unsigned long arg)
 {
        int error = 0;
 
+       lock_kernel();
        switch (command) {
        case SBPROF_ZBSTART:
                error = sbprof_zbprof_start(filp);
@@ -344,13 +359,17 @@ static int sbprof_tb_ioctl(struct inode *inode,
                error = sbprof_zbprof_stop();
                break;
        case SBPROF_ZBWAITFULL:
-               interruptible_sleep_on(&sbp.tb_read);
+               DEFINE_WAIT(wait);
+               prepare_to_wait(&sbp.tb_read, &wait, TASK_INTERRUPTIBLE);
+               schedule();
+               finish_wait(&sbp.tb_read, &wait);
                /* XXXKW check if interrupted? */
                return put_user(TB_FULL, (int *) arg);
        default:
                error = -EINVAL;
                break;
        }
+       unlock_kernel();
 
        return error;
 }
@@ -360,7 +379,8 @@ static struct file_operations sbprof_tb_fops = {
        .open           = sbprof_tb_open,
        .release        = sbprof_tb_release,
        .read           = sbprof_tb_read,
-       .ioctl          = sbprof_tb_ioctl,
+       .unlocked_ioctl = sbprof_tb_ioctl,
+       .compat_ioctl   = sbprof_tb_ioctl,
        .mmap           = NULL,
 };