Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 67908abf authored by Magnus Damm's avatar Magnus Damm Committed by Paul Mundt
Browse files

sh: Add migor_ts support to MigoR



Add support for the migor_ts touch panel to the MigoR board.

Signed-off-by: default avatarMagnus Damm <damm@igel.co.jp>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 57795867
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -202,6 +202,10 @@ static struct i2c_board_info __initdata migor_i2c_devices[] = {
		I2C_BOARD_INFO("rtc-rs5c372", 0x32),
		.type   = "rs5c372b",
	},
	{
		I2C_BOARD_INFO("migor_ts", 0x51),
		.irq = 38, /* IRQ6 */
	},
};

static int __init migor_devices_setup(void)
@@ -233,6 +237,11 @@ static void __init migor_setup(char **cmdline_p)

	/* I2C */
	ctrl_outl(ctrl_inl(MSTPCR1) & ~0x00000200, MSTPCR1);

	/* Touch Panel - Enable IRQ6 */
	ctrl_outw(ctrl_inw(PORT_PZCR) & ~0xc, PORT_PZCR);
	ctrl_outw((ctrl_inw(PORT_PSELA) | 0x8000), PORT_PSELA);
	ctrl_outw((ctrl_inw(PORT_HIZCRC) & ~0x4000), PORT_HIZCRC);
}

static struct sh_machine_vector mv_migor __initmv = {