|
@@ -14,7 +14,11 @@
|
|
#define get_index() gpio_read_pin(gpio_index, pin_index)
|
|
#define get_index() gpio_read_pin(gpio_index, pin_index)
|
|
#define get_trk0() gpio_read_pin(gpio_trk0, pin_trk0)
|
|
#define get_trk0() gpio_read_pin(gpio_trk0, pin_trk0)
|
|
#define get_wrprot() gpio_read_pin(gpio_wrprot, pin_wrprot)
|
|
#define get_wrprot() gpio_read_pin(gpio_wrprot, pin_wrprot)
|
|
-
|
|
|
|
|
|
+#if MCU == STM32F7
|
|
|
|
+#define get_tg43_0() gpio_read_pin(gpio_tr43, pin_tr43_0)
|
|
|
|
+#define get_tg43_1() gpio_read_pin(gpio_tr43, pin_tr43_1)
|
|
|
|
+#define get_wgate() gpio_read_pin(gpio_wgate, pin_wgate)
|
|
|
|
+#endif
|
|
#define configure_pin(pin, type) \
|
|
#define configure_pin(pin, type) \
|
|
gpio_configure_pin(gpio_##pin, pin_##pin, type)
|
|
gpio_configure_pin(gpio_##pin, pin_##pin, type)
|
|
|
|
|
|
@@ -29,6 +33,7 @@
|
|
|
|
|
|
static int bus_type = -1;
|
|
static int bus_type = -1;
|
|
static int unit_nr = -1;
|
|
static int unit_nr = -1;
|
|
|
|
+
|
|
static struct unit {
|
|
static struct unit {
|
|
int cyl;
|
|
int cyl;
|
|
bool_t initialised;
|
|
bool_t initialised;
|
|
@@ -337,12 +342,44 @@ static void step_dir_set(bool_t assert)
|
|
}
|
|
}
|
|
#define step_dir_out() step_dir_set(FALSE)
|
|
#define step_dir_out() step_dir_set(FALSE)
|
|
#define step_dir_in() step_dir_set(TRUE)
|
|
#define step_dir_in() step_dir_set(TRUE)
|
|
|
|
+#if MCU == STM32F7
|
|
|
|
+static void get_tg43_info(void){
|
|
|
|
+ struct unit *u;
|
|
|
|
+ int active=0;
|
|
|
|
+ int writing = 0;
|
|
|
|
+
|
|
|
|
+ if (unit_nr==0){
|
|
|
|
+ active= get_tg43_0();
|
|
|
|
+ }else{
|
|
|
|
+ active= get_tg43_1();
|
|
|
|
+ }
|
|
|
|
+ writing=get_wgate();
|
|
|
|
+ u = &unit[unit_nr];
|
|
|
|
+ if (u->cyl>=43 && !active && !writing){ /* Check TR43*/
|
|
|
|
+ act_led2(TRUE);
|
|
|
|
+ gpio_write_pin(gpio_dsel, pin_dsel, HIGH);
|
|
|
|
+ }else{
|
|
|
|
+ act_led2(FALSE);
|
|
|
|
+ gpio_write_pin(gpio_dsel, pin_dsel, LOW);
|
|
|
|
+ }
|
|
|
|
+ if (u->cyl>=60 && !active && writing){ /* Check TR43*/
|
|
|
|
+ act_led2(TRUE);
|
|
|
|
+ gpio_write_pin(gpio_dsel, pin_dsel, HIGH);
|
|
|
|
+ }else{
|
|
|
|
+ act_led2(FALSE);
|
|
|
|
+ gpio_write_pin(gpio_dsel, pin_dsel, LOW);
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+}
|
|
|
|
+#endif
|
|
static void step_once(void)
|
|
static void step_once(void)
|
|
{
|
|
{
|
|
write_pin(step, TRUE);
|
|
write_pin(step, TRUE);
|
|
delay_us(15);
|
|
delay_us(15);
|
|
write_pin(step, FALSE);
|
|
write_pin(step, FALSE);
|
|
|
|
+#if MCU == STM32F7
|
|
|
|
+ get_tg43_info();
|
|
|
|
+#endif
|
|
delay_us(delay_params.step_delay);
|
|
delay_us(delay_params.step_delay);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -354,8 +391,9 @@ static uint8_t floppy_seek_initialise(struct unit *u)
|
|
/* Synchronise to cylinder 0. */
|
|
/* Synchronise to cylinder 0. */
|
|
step_dir_out();
|
|
step_dir_out();
|
|
for (nr = 0; nr < 256; nr++) {
|
|
for (nr = 0; nr < 256; nr++) {
|
|
- if (get_trk0() == LOW)
|
|
|
|
|
|
+ if (get_trk0() == LOW){
|
|
goto found_cyl0;
|
|
goto found_cyl0;
|
|
|
|
+ }
|
|
step_once();
|
|
step_once();
|
|
}
|
|
}
|
|
|
|
|
|
@@ -425,6 +463,10 @@ static uint8_t floppy_seek(int cyl)
|
|
nr = u->cyl - cyl;
|
|
nr = u->cyl - cyl;
|
|
step_dir_out();
|
|
step_dir_out();
|
|
} else /* u->cyl == cyl */ {
|
|
} else /* u->cyl == cyl */ {
|
|
|
|
+#if MCU == STM32F7
|
|
|
|
+ u->cyl = cyl;
|
|
|
|
+ get_tg43_info();
|
|
|
|
+#endif
|
|
return ACK_OKAY;
|
|
return ACK_OKAY;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -435,7 +477,9 @@ static uint8_t floppy_seek(int cyl)
|
|
|
|
|
|
delay_ms(delay_params.seek_settle);
|
|
delay_ms(delay_params.seek_settle);
|
|
u->cyl = cyl;
|
|
u->cyl = cyl;
|
|
-
|
|
|
|
|
|
+#if MCU == STM32F7
|
|
|
|
+ get_tg43_info();
|
|
|
|
+#endif
|
|
return ACK_OKAY;
|
|
return ACK_OKAY;
|
|
}
|
|
}
|
|
|
|
|