Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / drivers / gpu / drm / nouveau / nvkm / subdev / pmu / fuc / host.fuc
1 /*
2  * Copyright 2013 Red Hat Inc.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: Ben Skeggs
23  */
24
25 #ifdef INCLUDE_PROC
26 process(PROC_HOST, #host_init, #host_recv)
27 #endif
28
29 /******************************************************************************
30  * HOST data segment
31  *****************************************************************************/
32 #ifdef INCLUDE_DATA
33 // HOST (R)FIFO packet format
34 .equ #fifo_process 0x00
35 .equ #fifo_message 0x04
36 .equ #fifo_data0   0x08
37 .equ #fifo_data1   0x0c
38
39 // HOST HOST->PWR queue description
40 .equ #fifo_qlen 4 // log2(size of queue entry in bytes)
41 .equ #fifo_qnum 3 // log2(max number of entries in queue)
42 .equ #fifo_qmaskb (1 << #fifo_qnum) // max number of entries in queue
43 .equ #fifo_qmaskp (#fifo_qmaskb - 1)
44 .equ #fifo_qmaskf ((#fifo_qmaskb << 1) - 1)
45 .equ #fifo_qsize  (1 << (#fifo_qlen + #fifo_qnum))
46 fifo_queue: .skip 128 // #fifo_qsize
47
48 // HOST PWR->HOST queue description
49 .equ #rfifo_qlen 4 // log2(size of queue entry in bytes)
50 .equ #rfifo_qnum 3 // log2(max number of entries in queue)
51 .equ #rfifo_qmaskb (1 << #rfifo_qnum) // max number of entries in queue
52 .equ #rfifo_qmaskp (#rfifo_qmaskb - 1)
53 .equ #rfifo_qmaskf ((#rfifo_qmaskb << 1) - 1)
54 .equ #rfifo_qsize  (1 << (#rfifo_qlen + #rfifo_qnum))
55 rfifo_queue: .skip 128 // #rfifo_qsize
56 #endif
57
58 /******************************************************************************
59  * HOST code segment
60  *****************************************************************************/
61 #ifdef INCLUDE_CODE
62 // HOST->PWR comms - dequeue message(s) for process(es) from FIFO
63 //
64 // $r15 - current (host)
65 // $r0  - zero
66 host_send:
67         nv_iord($r1, NV_PPWR_FIFO_GET(0))
68         nv_iord($r2, NV_PPWR_FIFO_PUT(0))
69         cmp b32 $r1 $r2
70         bra e #host_send_done
71                 // calculate address of message
72                 and $r14 $r1 #fifo_qmaskp
73                 shl b32 $r14 $r14 #fifo_qlen
74                 add b32 $r14 #fifo_queue
75
76                 // read message data, and pass to appropriate process
77                 ld b32 $r11 D[$r14 + #fifo_data1]
78                 ld b32 $r12 D[$r14 + #fifo_data0]
79                 ld b32 $r13 D[$r14 + #fifo_message]
80                 ld b32 $r14 D[$r14 + #fifo_process]
81                 call(send)
82
83                 // increment GET
84                 add b32 $r1 0x1
85                 and $r14 $r1 #fifo_qmaskf
86                 nv_iowr(NV_PPWR_FIFO_GET(0), $r14)
87                 bra #host_send
88         host_send_done:
89         ret
90
91 // PWR->HOST comms - enqueue message for HOST to RFIFO
92 //
93 // $r15 - current (host)
94 // $r14 - process
95 // $r13 - message
96 // $r12 - message data 0
97 // $r11 - message data 1
98 // $r0  - zero
99 host_recv:
100         // message from intr handler == HOST->PWR comms pending
101         mov $r1 (PROC_KERN & 0x0000ffff)
102         sethi $r1 (PROC_KERN & 0xffff0000)
103         cmp b32 $r14 $r1
104         bra e #host_send
105
106         // wait for space in RFIFO
107         host_recv_wait:
108         nv_iord($r1, NV_PPWR_RFIFO_GET)
109         nv_iord($r2, NV_PPWR_RFIFO_PUT)
110         xor $r1 #rfifo_qmaskb
111         cmp b32 $r1 $r2
112         bra e #host_recv_wait
113
114         and $r3 $r2 #rfifo_qmaskp
115         shl b32 $r3 #rfifo_qlen
116         add b32 $r3 #rfifo_queue
117
118         // enqueue message
119         st b32 D[$r3 + #fifo_data1] $r11
120         st b32 D[$r3 + #fifo_data0] $r12
121         st b32 D[$r3 + #fifo_message] $r13
122         st b32 D[$r3 + #fifo_process] $r14
123
124         add b32 $r2 0x1
125         and $r2 #rfifo_qmaskf
126         nv_iowr(NV_PPWR_RFIFO_PUT, $r2)
127
128         // notify host of pending message
129         mov $r2 NV_PPWR_INTR_TRIGGER_USER0
130         nv_iowr(NV_PPWR_INTR_TRIGGER, $r2)
131         ret
132
133 // $r15 - current (host)
134 // $r0  - zero
135 host_init:
136         // store each fifo's base/size in H2D/D2H scratch regs
137         mov $r1 #fifo_qsize
138         shl b32 $r1 16
139         or $r1 #fifo_queue
140         nv_iowr(NV_PPWR_H2D, $r1);
141
142         mov $r1 #rfifo_qsize
143         shl b32 $r1 16
144         or $r1 #rfifo_queue
145         nv_iowr(NV_PPWR_D2H, $r1);
146
147         // enable fifo subintr for first fifo
148         mov $r1 1
149         nv_iowr(NV_PPWR_FIFO_INTR_EN, $r1)
150         ret
151 #endif