linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* Naming convention DSI + device tree
@ 2013-05-14 18:17 David Lanzendörfer
  2013-05-15 22:28 ` Stephen Warren
  0 siblings, 1 reply; 9+ messages in thread
From: David Lanzendörfer @ 2013-05-14 18:17 UTC (permalink / raw)
  To: linux-arm-kernel

Hello
I have the following issue:
In order to make the DSI controller react at all, I need to pass him a certain combination of pin states.
Until now within the code of the original android kernel which was using board files this has just been
done by doing bit banging.

namely:
	gpio_set_value(tf201_lvds_shutdown, 1);
	mdelay(20);
	gpio_set_value(TEGRA_GPIO_PH0, 1);
	mdelay(10);
	gpio_set_value(TEGRA_GPIO_PH2, 1);
	mdelay(15);
	gpio_set_value(TEGRA_GPIO_PU2, 0);
	gpio_set_value(TEGRA_GPIO_PU2, 1);
	mdelay(10);
	gpio_set_value(TEGRA_GPIO_PU2, 0);
	mdelay(10);
	gpio_set_value(TEGRA_GPIO_PU2, 1);
	mdelay(15);

Now with a device tree comes the question: Where should I put this?
Also because I don't have the schematics of the TF201 (for obvious reasons)
I won't be able to name the pin assignments of the DSI controller
in a generic driver correctly.
Would be neat if an ASUS engineer with the schematic at hand could
figure out what pins these are and could name the pin assignment.

best regards
David

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-05-23  9:55 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-14 18:17 Naming convention DSI + device tree David Lanzendörfer
2013-05-15 22:28 ` Stephen Warren
2013-05-16  7:15   ` David Lanzendörfer
2013-05-16 18:17     ` Stephen Warren
2013-05-16 19:50       ` David Lanzendörfer
2013-05-17  5:36       ` Alex Courbot
2013-05-17 19:39         ` Stephen Warren
2013-05-22  6:24         ` Mark Zhang
2013-05-23  9:55           ` Alex Courbot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).