Lines Matching defs:action
56 u64 action;
71 action = cvmx_read_csr(mbox_clrx);
74 action &= 0xff;
76 action &= 0xffff;
79 cvmx_write_csr(mbox_clrx, action);
81 for (i = 0; i < ARRAY_SIZE(octeon_message_functions) && action;) {
82 if (action & 1) {
88 action >>= 1;
99 void octeon_send_ipi_single(int cpu, unsigned int action)
103 pr_info("SMP: Mailbox send cpu=%d, coreid=%d, action=%u\n", cpu,
104 coreid, action);
106 cvmx_write_csr(CVMX_CIU_MBOX_SETX(coreid), action);
110 unsigned int action)
115 octeon_send_ipi_single(i, action);
476 static void octeon_78xx_send_ipi_single(int cpu, unsigned int action)
481 if (action & 1)
483 action >>= 1;
488 unsigned int action)
493 octeon_78xx_send_ipi_single(cpu, action);