From 22103e71494536294947716acdbc198988530c68 Mon Sep 17 00:00:00 2001 From: kub Date: Mon, 17 Feb 2025 23:41:52 +0100 Subject: [PATCH] platform ps2, improve pad detection --- platform/ps2/in_ps2.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/platform/ps2/in_ps2.c b/platform/ps2/in_ps2.c index a8014c79..5ddf0e9a 100644 --- a/platform/ps2/in_ps2.c +++ b/platform/ps2/in_ps2.c @@ -229,6 +229,7 @@ static const in_drv_t in_ps2_drv = { void in_ps2_init(struct in_default_bind *defbinds) { int i, j; + int st, tm; for (j = 0; j < 2 && padMapped < 4; j++) { mtapPortOpen(j); @@ -236,9 +237,15 @@ void in_ps2_init(struct in_default_bind *defbinds) for (i = 0; i < 4 && padMapped < 4; i++) { padBuf[j][i] = memalign(64, 256); if (padPortOpen(j, i, padBuf[j][i])) { - padMap[padMapped][0] = j; - padMap[padMapped][1] = i; - padMapped++; + tm = 10; + do { usleep(100000); st = padGetState(j, i); } + while (st > PAD_STATE_DISCONN && st < PAD_STATE_STABLE && --tm >= 0); + if (st == PAD_STATE_STABLE) { + padMap[padMapped][0] = j; + padMap[padMapped][1] = i; + padMapped++; + } else + padPortClose(j, i); } else free(padBuf[j][i]); } -- 2.39.5