Lines Matching defs:action
57 u64 action;
72 action = cvmx_read_csr(mbox_clrx);
75 action &= 0xff;
77 action &= 0xffff;
80 cvmx_write_csr(mbox_clrx, action);
82 for (i = 0; i < ARRAY_SIZE(octeon_message_functions) && action;) {
83 if (action & 1) {
89 action >>= 1;
100 void octeon_send_ipi_single(int cpu, unsigned int action)
104 pr_info("SMP: Mailbox send cpu=%d, coreid=%d, action=%u\n", cpu,
105 coreid, action);
107 cvmx_write_csr(CVMX_CIU_MBOX_SETX(coreid), action);
111 unsigned int action)
116 octeon_send_ipi_single(i, action);
473 static void octeon_78xx_send_ipi_single(int cpu, unsigned int action)
478 if (action & 1)
480 action >>= 1;
485 unsigned int action)
490 octeon_78xx_send_ipi_single(cpu, action);