chiark / gitweb /
transmit management - initial cut
[trains.git] / detpic / program.asm
1 ;======================================================================
2 ; MAIN PROGRAM AND GLUE
3
4  include common.inc
5  code
6
7 ;======================================================================
8 ; COMMON TO MASTER AND SLAVE
9
10 ;----------------------------------------
11 vector_reset
12
13  set_f qqTRISA
14  set_f qqTRISB
15  set_f qqTRISC
16  set_f qqTRISD
17  set_f qqTRISE
18  mov_lw 0xaa
19  mov_wf qqLATA
20  mov_wf qqLATB
21  mov_wf qqLATC
22  mov_wf qqLATD
23  mov_wf qqLATE
24
25         clr_f   INTCON
26         bs_f    RCON, IPEN      ; interrupt priorities
27
28         call    idlocs_init
29
30         bt_f_if0 idloc1,idloc1_master
31         call    slave_init
32
33         bt_f_if1 idloc1,idloc1_master
34         call    master_init
35
36         bs_f    INTCON, GIEH
37         bs_f    INTCON, GIEL
38
39         bt_f_if1 idloc1,idloc1_boarddet
40         goto    backgroundloop_detectors
41         goto    backgroundloop_reversers
42
43 ;----------
44 common_local_init
45 ; called by {master,slave}_init immediately after they've init'd i2c.
46         clr_f   PCLATU
47         call    bitnum2bit_init
48
49         call    points_local_init
50         call    polarity_local_init
51         call    detect_local_init
52         return
53
54 ;----------------------------------------
55 panic_kill_hook
56
57 ;----------
58 intrl_handled_routine
59         mov_ff  isr_low_save_stkptr, STKPTR
60         intrl_handled_core
61
62 ;======================================================================
63 ; MASTER
64
65 ;----------------------------------------
66 master_init
67 ; Master-specific initialisation.
68         call    i2cm_init
69         call    polarity_master_init
70         call    common_local_init
71         call    serial_init
72         call    nmra_init
73         call    serialtxfc_init
74         call    mascan_init
75         return
76
77 ;----------------------------------------
78 master_interrupt_low
79         enter_interrupt_low
80         call    ticker_intrl
81         call    nmra_serialrx_intrl
82         call    serialtx_intrl
83         call    points_local_intrl
84         call    i2cm_intrl
85         panic   morse_IL
86
87 ;----------
88 master_interrupt_high_notnmra
89         panic   morse_IH
90
91 ;----------------------------------------------------------------------
92 serialrx_table_section  code    0x2000
93
94 ;--------------------
95 serialrx_generalmsg
96 ;command_<something>  has same calling convention:
97 ;
98 ;  FSR0 ->      start of message                undefined
99 ;  *FSR0        message                         undefined
100 ;
101 ;                               ; INDF0=MM ww ww ww ww ii ii ii
102         rlc_fw  INDF0           ; W =   ww ww ww ww ii ii ii ??  C=MM Z=00
103         bra_c   serialrx_if_multibyte
104         bra_z   command_crashed
105         ; single-byte non-0 command, has to be ON or OFF
106         ;       ie supposedly   ; INDF0=zz zz II zz zz zz zz PP  C=zz
107         rrc_fw  INDF0           ; W =   zz zz zz II zz zz zz zz  C=PP
108         xor_lw  0x10            ; W =   zz zz zz zz zz zz zz zz  C=PP Z=OK
109         bra_n   serialrx_bad
110         goto    command_power
111
112 ;-----
113 serialrx_if_multibyte
114         rr_fw   INDF0           ; W =   ii MM ww ww ww ww ii ii
115         and_lw  0x3c            ; W =   zz zz ww ww ww ww zz zz
116         bt_f_if0 PCL, 0 ; always true, but reads PCL
117         add_wff PCL
118         ; <--- here is zero
119
120         goto    serialrx_bad            ; 1 0000 xxx
121         goto    command_ping            ; 1 0001 xxx
122         goto    command_polarity        ; 1 0010 xxx
123         goto    serialrx_bad            ; 1 0011 xxx
124         goto    command_point           ; 1 0100 xxx
125         goto    serialrx_bad            ; 1 0101 xxx
126         goto    serialrx_bad            ; 1 0110 xxx
127         goto    serialrx_bad            ; 1 0111 xxx
128         goto    serialrx_bad            ; 1 1000 xxx
129         goto    serialrx_bad            ; 1 1001 xxx
130         goto    serialrx_bad            ; 1 1010 xxx
131         goto    serialrx_bad            ; 1 1011 xxx
132         goto    serialrx_bad            ; 1 1100 xxx
133         goto    serialrx_bad            ; 1 1101 xxx
134         goto    serialrx_bad            ; 1 1110 xxx
135         goto    serialrx_bad            ; 1 1111 xxx
136
137         goto    serialrx_bad    ; 0 0000 xxx
138         goto    serialrx_bad    ; 0 0001 xxx
139         goto    serialrx_bad    ; 0 0000 xxx
140
141 ;-----
142 serialrx_bad
143         mov_ff  INDF0, t
144         panic   morse_HX
145
146 ;       bra_z   crashed_master_do
147 ;       mov_fw  INDF0
148 ;       bra_z   crashed_master_do
149
150 ;       serialrx_check 0x00, 0x21, command_power_on
151 ;       serialrx_check 0x21, 0x20, command_power_off
152
153 ;       and_lw  0xf8            ; W^0x20 =      MM ww ww ww  ww zz zz zz
154
155 ;       serialrx_check 0x00, 0xa0, point_master_do
156 ;       serialrx_check 0xa0, 0x88, ping_master_do
157 ;       serialrx_check 0x88, 0x90, polarity_master_do
158
159 ;       serialrx_check 0x90, 0x90, polarity_master_do
160
161 ;       mov_wf  t               ; t =           MM ww ww ww  ww zz zz zz
162
163 ;       xor_lw  0x
164
165 ;       and_lw
166
167 ;--------------------
168 command_ping
169 command_point
170 command_crashed
171         panic   morse_UC
172
173 ;======================================================================
174 ; SLAVE
175
176 ;----------------------------------------
177 slave_init
178 ; Slave-specific initialisation.
179         mov_fw  picno
180         call    i2cs_init
181
182         bc_f    T0CON, TMR0ON
183
184         call    common_local_init
185         call    detect_slave_init
186         return
187
188 ;----------------------------------------
189 slave_interrupt_low
190         enter_interrupt_low
191         call    points_local_intrl
192         panic   morse_IL
193
194 ;----------------------------------------
195 i2csu_write_begin
196         return
197
198 near_local_do code
199 ;----------------------------------------
200 i2csu_write_data
201         call    led_green
202
203         bt_w_if0 7
204         bra     i2csu_write_if_special
205         bt_w_if1 6
206         bra     polarity_local_do
207         bt_w_if0 5
208         bra     point_local_do
209 i2csu_write_if_bad
210         mov_wf  t
211         panic   morse_DX
212
213 i2csu_write_if_special
214         tst_w_ifnz
215         bra     i2csu_write_if_bad
216         goto    panic_crashread_commanded
217
218 code2 code
219 ;======================================================================
220 ; MASTER/SLAVE deviations
221
222 ;----------
223 message_for_master
224 ; Either transmits the message to the master, or if we are the master,
225 ; handles it as an incoming message from the notional `slave 0'.
226 ;  W            message         unchanged
227 ;  GIEH         set             set
228         bt_f_if0 idloc1,idloc1_master
229         goto    slave_add_short_message
230         goto    loopback_read_byte
231
232 ;======================================================================
233  include final.inc