1 /* dv-m68hc11spi.c -- Simulation of the 68HC11 SPI
2 Copyright (C) 2000-2024 Free Software Foundation, Inc.
3 Written by Stephane Carrez (stcarrez@nerim.fr)
4 (From a driver model Contributed by Cygnus Solutions.)
6 This file is part of the program GDB, the GNU debugger.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 /* This must come before any other includes. */
28 #include "dv-sockser.h"
29 #include "sim-assert.h"
31 #include "m68hc11-sim.h"
35 m68hc11spi - m68hc11 SPI interface
40 Implements the m68hc11 Synchronous Serial Peripheral Interface
41 described in the m68hc11 user guide (Chapter 8 in pink book).
42 The SPI I/O controller is directly connected to the CPU
43 interrupt. The simulator implements:
47 - Write collision detection
59 Reset port. This port is only used to simulate a reset of the SPI
60 I/O controller. It should be connected to the RESET output of the cpu.
74 static const struct hw_port_descriptor m68hc11spi_ports
[] =
76 { "reset", RESET_PORT
, 0, input_port
, },
84 /* Information about next character to be transmited. */
85 unsigned char tx_char
;
89 unsigned char rx_char
;
90 unsigned char rx_clear_scsr
;
91 unsigned char clk_pin
;
93 /* SPI clock rate (twice the real clock). */
96 /* Periodic SPI event. */
97 struct hw_event
* spi_event
;
102 /* Finish off the partially created hw device. Attach our local
103 callbacks. Wire up our port names etc */
105 static hw_io_read_buffer_method m68hc11spi_io_read_buffer
;
106 static hw_io_write_buffer_method m68hc11spi_io_write_buffer
;
107 static hw_port_event_method m68hc11spi_port_event
;
108 static hw_ioctl_method m68hc11spi_ioctl
;
110 #define M6811_SPI_FIRST_REG (M6811_SPCR)
111 #define M6811_SPI_LAST_REG (M6811_SPDR)
115 attach_m68hc11spi_regs (struct hw
*me
,
116 struct m68hc11spi
*controller
)
118 hw_attach_address (hw_parent (me
), M6811_IO_LEVEL
, io_map
,
120 M6811_SPI_LAST_REG
- M6811_SPI_FIRST_REG
+ 1,
125 m68hc11spi_finish (struct hw
*me
)
127 struct m68hc11spi
*controller
;
129 controller
= HW_ZALLOC (me
, struct m68hc11spi
);
130 set_hw_data (me
, controller
);
131 set_hw_io_read_buffer (me
, m68hc11spi_io_read_buffer
);
132 set_hw_io_write_buffer (me
, m68hc11spi_io_write_buffer
);
133 set_hw_ports (me
, m68hc11spi_ports
);
134 set_hw_port_event (me
, m68hc11spi_port_event
);
136 set_hw_ioctl (me
, m68hc11spi_ioctl
);
138 me
->to_ioctl
= m68hc11spi_ioctl
;
141 /* Attach ourself to our parent bus. */
142 attach_m68hc11spi_regs (me
, controller
);
144 /* Initialize to reset state. */
145 controller
->spi_event
= NULL
;
146 controller
->rx_clear_scsr
= 0;
151 /* An event arrives on an interrupt port */
154 m68hc11spi_port_event (struct hw
*me
,
160 struct m68hc11spi
*controller
;
163 controller
= hw_data (me
);
168 HW_TRACE ((me
, "SPI reset"));
170 /* Reset the state of SPI registers. */
171 controller
->rx_clear_scsr
= 0;
172 if (controller
->spi_event
)
174 hw_event_queue_deschedule (me
, controller
->spi_event
);
175 controller
->spi_event
= 0;
179 m68hc11spi_io_write_buffer (me
, &val
, io_map
,
180 (unsigned_word
) M6811_SPCR
, 1);
185 hw_abort (me
, "Event on unknown port %d", my_port
);
191 set_bit_port (struct hw
*me
, sim_cpu
*cpu
, int port
, int mask
, int value
)
193 struct m68hc11_sim_cpu
*m68hc11_cpu
= M68HC11_SIM_CPU (cpu
);
197 val
= m68hc11_cpu
->ios
[port
] | mask
;
199 val
= m68hc11_cpu
->ios
[port
] & ~mask
;
201 /* Set the new value and post an event to inform other devices
202 that pin 'port' changed. */
203 m68hc11cpu_set_port (me
, cpu
, port
, val
);
207 /* When a character is sent/received by the SPI, the PD2..PD5 line
208 are driven by the following signals:
211 -----+---------+--------+---/-+-------
213 MISO +---------+--------+---/-+
215 CLK _______/ \____/ \__ CPOL=0, CPHA=0
217 \____/ \___/ CPOL=1, CPHA=0
219 __/ \____/ \___/ CPOL=0, CPHA=1
221 \____/ \____/ \__ CPOL=1, CPHA=1
224 \__________________________//___/
233 #define SPI_START_BYTE 0
234 #define SPI_START_BIT 1
235 #define SPI_MIDDLE_BIT 2
238 m68hc11spi_clock (struct hw
*me
, void *data
)
241 struct m68hc11spi
* controller
;
243 struct m68hc11_sim_cpu
*m68hc11_cpu
;
244 int check_interrupt
= 0;
246 controller
= hw_data (me
);
248 cpu
= STATE_CPU (sd
, 0);
249 m68hc11_cpu
= M68HC11_SIM_CPU (cpu
);
251 /* Cleanup current event. */
252 if (controller
->spi_event
)
254 hw_event_queue_deschedule (me
, controller
->spi_event
);
255 controller
->spi_event
= 0;
258 /* Change a bit of data at each two SPI event. */
259 if (controller
->mode
== SPI_START_BIT
)
261 /* Reflect the bit value on bit 2 of port D. */
262 set_bit_port (me
, cpu
, M6811_PORTD
, (1 << 2),
263 (controller
->tx_char
& (1 << controller
->tx_bit
)));
264 controller
->tx_bit
--;
265 controller
->mode
= SPI_MIDDLE_BIT
;
267 else if (controller
->mode
== SPI_MIDDLE_BIT
)
269 controller
->mode
= SPI_START_BIT
;
272 if (controller
->mode
== SPI_START_BYTE
)
274 /* Start a new SPI transfer. */
276 /* TBD: clear SS output. */
277 controller
->mode
= SPI_START_BIT
;
278 controller
->tx_bit
= 7;
279 set_bit_port (me
, cpu
, M6811_PORTD
, (1 << 4), ~controller
->clk_pin
);
283 /* Change the SPI clock at each event on bit 4 of port D. */
284 controller
->clk_pin
= ~controller
->clk_pin
;
285 set_bit_port (me
, cpu
, M6811_PORTD
, (1 << 4), controller
->clk_pin
);
288 /* Transmit is now complete for this byte. */
289 if (controller
->mode
== SPI_START_BIT
&& controller
->tx_bit
< 0)
291 controller
->rx_clear_scsr
= 0;
292 m68hc11_cpu
->ios
[M6811_SPSR
] |= M6811_SPIF
;
293 if (m68hc11_cpu
->ios
[M6811_SPCR
] & M6811_SPIE
)
298 controller
->spi_event
= hw_event_queue_schedule (me
, controller
->clock
,
304 interrupts_update_pending (&m68hc11_cpu
->cpu_interrupts
);
307 /* Flags of the SPCR register. */
308 io_reg_desc spcr_desc
[] = {
309 { M6811_SPIE
, "SPIE ", "Serial Peripheral Interrupt Enable" },
310 { M6811_SPE
, "SPE ", "Serial Peripheral System Enable" },
311 { M6811_DWOM
, "DWOM ", "Port D Wire-OR mode option" },
312 { M6811_MSTR
, "MSTR ", "Master Mode Select" },
313 { M6811_CPOL
, "CPOL ", "Clock Polarity" },
314 { M6811_CPHA
, "CPHA ", "Clock Phase" },
315 { M6811_SPR1
, "SPR1 ", "SPI Clock Rate Select" },
316 { M6811_SPR0
, "SPR0 ", "SPI Clock Rate Select" },
321 /* Flags of the SPSR register. */
322 io_reg_desc spsr_desc
[] = {
323 { M6811_SPIF
, "SPIF ", "SPI Transfer Complete flag" },
324 { M6811_WCOL
, "WCOL ", "Write Collision" },
325 { M6811_MODF
, "MODF ", "Mode Fault" },
330 m68hc11spi_info (struct hw
*me
)
335 struct m68hc11_sim_cpu
*m68hc11_cpu
;
336 struct m68hc11spi
*controller
;
340 cpu
= STATE_CPU (sd
, 0);
341 m68hc11_cpu
= M68HC11_SIM_CPU (cpu
);
342 controller
= hw_data (me
);
344 sim_io_printf (sd
, "M68HC11 SPI:\n");
346 base
= cpu_get_io_base (cpu
);
348 val
= m68hc11_cpu
->ios
[M6811_SPCR
];
349 print_io_byte (sd
, "SPCR", spcr_desc
, val
, base
+ M6811_SPCR
);
350 sim_io_printf (sd
, "\n");
352 val
= m68hc11_cpu
->ios
[M6811_SPSR
];
353 print_io_byte (sd
, "SPSR", spsr_desc
, val
, base
+ M6811_SPSR
);
354 sim_io_printf (sd
, "\n");
356 if (controller
->spi_event
)
360 sim_io_printf (sd
, " SPI has %d bits to send\n",
361 controller
->tx_bit
+ 1);
362 t
= hw_event_remain_time (me
, controller
->spi_event
);
363 sim_io_printf (sd
, " SPI current bit-cycle finished in %s\n",
364 cycle_to_string (cpu
, t
, PRINT_TIME
| PRINT_CYCLE
));
366 t
+= (controller
->tx_bit
+ 1) * 2 * controller
->clock
;
367 sim_io_printf (sd
, " SPI operation finished in %s\n",
368 cycle_to_string (cpu
, t
, PRINT_TIME
| PRINT_CYCLE
));
373 m68hc11spi_ioctl (struct hw
*me
,
374 hw_ioctl_request request
,
377 m68hc11spi_info (me
);
381 /* generic read/write */
384 m68hc11spi_io_read_buffer (struct hw
*me
,
391 struct m68hc11spi
*controller
;
393 struct m68hc11_sim_cpu
*m68hc11_cpu
;
396 HW_TRACE ((me
, "read 0x%08lx %d", (long) base
, (int) nr_bytes
));
399 cpu
= STATE_CPU (sd
, 0);
400 m68hc11_cpu
= M68HC11_SIM_CPU (cpu
);
401 controller
= hw_data (me
);
406 controller
->rx_clear_scsr
= m68hc11_cpu
->ios
[M6811_SCSR
]
407 & (M6811_SPIF
| M6811_WCOL
| M6811_MODF
);
408 ATTRIBUTE_FALLTHROUGH
;
411 val
= m68hc11_cpu
->ios
[base
];
415 if (controller
->rx_clear_scsr
)
417 m68hc11_cpu
->ios
[M6811_SPSR
] &= ~controller
->rx_clear_scsr
;
418 controller
->rx_clear_scsr
= 0;
419 interrupts_update_pending (&m68hc11_cpu
->cpu_interrupts
);
421 val
= controller
->rx_char
;
427 *((uint8_t*) dest
) = val
;
432 m68hc11spi_io_write_buffer (struct hw
*me
,
439 struct m68hc11spi
*controller
;
441 struct m68hc11_sim_cpu
*m68hc11_cpu
;
444 HW_TRACE ((me
, "write 0x%08lx %d", (long) base
, (int) nr_bytes
));
447 cpu
= STATE_CPU (sd
, 0);
448 m68hc11_cpu
= M68HC11_SIM_CPU (cpu
);
449 controller
= hw_data (me
);
451 val
= *((const uint8_t*) source
);
455 m68hc11_cpu
->ios
[M6811_SPCR
] = val
;
457 /* The SPI clock rate is 2, 4, 16, 32 of the internal CPU clock.
458 We have to drive the clock pin and need a 2x faster clock. */
459 switch (val
& (M6811_SPR1
| M6811_SPR0
))
462 controller
->clock
= 1;
466 controller
->clock
= 2;
470 controller
->clock
= 8;
474 controller
->clock
= 16;
478 /* Set the clock pin. */
479 if ((val
& M6811_CPOL
)
480 && (controller
->spi_event
== 0
481 || ((val
& M6811_CPHA
) && controller
->mode
== 1)))
482 controller
->clk_pin
= 1;
484 controller
->clk_pin
= 0;
486 set_bit_port (me
, cpu
, M6811_PORTD
, (1 << 4), controller
->clk_pin
);
489 /* Can't write to SPSR. */
494 if (!(m68hc11_cpu
->ios
[M6811_SPCR
] & M6811_SPE
))
499 if (controller
->rx_clear_scsr
)
501 m68hc11_cpu
->ios
[M6811_SPSR
] &= ~controller
->rx_clear_scsr
;
502 controller
->rx_clear_scsr
= 0;
503 interrupts_update_pending (&m68hc11_cpu
->cpu_interrupts
);
506 /* If transfer is taking place, a write to SPDR
507 generates a collision. */
508 if (controller
->spi_event
)
510 m68hc11_cpu
->ios
[M6811_SPSR
] |= M6811_WCOL
;
514 /* Refuse the write if there was no read of SPSR. */
517 /* Prepare to send a byte. */
518 controller
->tx_char
= val
;
519 controller
->mode
= SPI_START_BYTE
;
521 /* Toggle clock pin internal value when CPHA is 0 so that
522 it will really change in the middle of a bit. */
523 if (!(m68hc11_cpu
->ios
[M6811_SPCR
] & M6811_CPHA
))
524 controller
->clk_pin
= ~controller
->clk_pin
;
526 m68hc11_cpu
->ios
[M6811_SPDR
] = val
;
528 /* Activate transmission. */
529 m68hc11spi_clock (me
, NULL
);
539 const struct hw_descriptor dv_m68hc11spi_descriptor
[] = {
540 { "m68hc11spi", m68hc11spi_finish
},
541 { "m68hc12spi", m68hc11spi_finish
},