* N900: fixing MMC at boot
@ 2014-12-06 17:35 Pavel Machek
2014-12-06 17:40 ` Pali Rohár
0 siblings, 1 reply; 4+ messages in thread
From: Pavel Machek @ 2014-12-06 17:35 UTC (permalink / raw)
To: pali.rohar, sre, sre, kernel list, linux-arm-kernel, linux-omap,
tony, khilman, aaro.koskinen, freemangordon
Hi!
For a long time, MMC was not working during boot... (making the box
unusable without nfsroot). It seems problem is in the regulators,
because with diff below, I was able to mount root on SD card for a
first time ... in a long time.
Signed-off-by: Pavel Machek <pavel@ucw.cz> [but not for upstream]
diff --git a/Documentation/devicetree/bindings/regulator/regulator.txt b/Documentation/devicetree/bindings/regulator/regulator.txt
index 8607433..07791c6 100644
--- a/Documentation/devicetree/bindings/regulator/regulator.txt
+++ b/Documentation/devicetree/bindings/regulator/regulator.txt
@@ -4,7 +4,8 @@ Optional properties:
- regulator-name: A string used as a descriptive name for regulator outputs
- regulator-min-microvolt: smallest voltage consumers may set
- regulator-max-microvolt: largest voltage consumers may set
-- regulator-microvolt-offset: Offset applied to voltages to compensate for voltage drops
+- regulator-microvolt-offset: Offset applied to voltages to compensate for
+ voltage drops
- regulator-min-microamp: smallest current consumers may set
- regulator-max-microamp: largest current consumers may set
- regulator-always-on: boolean, regulator should never be disabled
diff --git a/arch/arm/boot/dts/omap3-n900.dts b/arch/arm/boot/dts/omap3-n900.dts
index 11d8afd..707928d 100644
--- a/arch/arm/boot/dts/omap3-n900.dts
+++ b/arch/arm/boot/dts/omap3-n900.dts
@@ -287,31 +287,35 @@
regulator-name = "V28";
regulator-min-microvolt = <2800000>;
regulator-max-microvolt = <2800000>;
- regulator-always-on; /* due battery cover sensor */
+ regulator-always-on; /* due to battery cover sensor */
};
&vaux2 {
regulator-name = "VCSI";
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
+ regulator-always-on; /* FIXME */
};
&vaux3 {
regulator-name = "VMMC2_30";
regulator-min-microvolt = <2800000>;
regulator-max-microvolt = <3000000>;
+ regulator-always-on; /* FIXME */
};
&vaux4 {
regulator-name = "VCAM_ANA_28";
regulator-min-microvolt = <2800000>;
regulator-max-microvolt = <2800000>;
+ regulator-always-on; /* FIXME */
};
&vmmc1 {
regulator-name = "VMMC1";
regulator-min-microvolt = <1850000>;
regulator-max-microvolt = <3150000>;
+ regulator-always-on; /* FIXME */
};
&vmmc2 {
@@ -339,13 +343,14 @@
regulator-name = "VMMC2_IO_18";
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
+ regulator-always-on; /* FIXME */
};
&vio {
regulator-name = "VIO";
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
-
+ regulator-always-on; /* FIXME */
};
&vintana1 {
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: N900: fixing MMC at boot
2014-12-06 17:35 N900: fixing MMC at boot Pavel Machek
@ 2014-12-06 17:40 ` Pali Rohár
2014-12-06 18:04 ` Pavel Machek
0 siblings, 1 reply; 4+ messages in thread
From: Pali Rohár @ 2014-12-06 17:40 UTC (permalink / raw)
To: Pavel Machek
Cc: sre, sre, kernel list, linux-arm-kernel, linux-omap, tony,
khilman, aaro.koskinen, freemangordon
[-- Attachment #1: Type: Text/Plain, Size: 423 bytes --]
On Saturday 06 December 2014 18:35:27 Pavel Machek wrote:
> Hi!
>
> For a long time, MMC was not working during boot... (making
> the box unusable without nfsroot). It seems problem is in the
> regulators, because with diff below, I was able to mount root
> on SD card for a first time ... in a long time.
>
Hi, do you mean external SD card or internal eMMC (MyDocs)?
--
Pali Rohár
pali.rohar@gmail.com
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: N900: fixing MMC at boot
2014-12-06 17:40 ` Pali Rohár
@ 2014-12-06 18:04 ` Pavel Machek
2014-12-06 18:08 ` Pali Rohár
0 siblings, 1 reply; 4+ messages in thread
From: Pavel Machek @ 2014-12-06 18:04 UTC (permalink / raw)
To: Pali Rohár
Cc: sre, sre, kernel list, linux-arm-kernel, linux-omap, tony,
khilman, aaro.koskinen, freemangordon
On Sat 2014-12-06 18:40:16, Pali Rohár wrote:
> On Saturday 06 December 2014 18:35:27 Pavel Machek wrote:
> > Hi!
> >
> > For a long time, MMC was not working during boot... (making
> > the box unusable without nfsroot). It seems problem is in the
> > regulators, because with diff below, I was able to mount root
> > on SD card for a first time ... in a long time.
> >
>
> Hi, do you mean external SD card or internal eMMC (MyDocs)?
I mean u-SD card. But it is strange. I reverted the patch now, and it
still works. Not sure why or what I've done differently.
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: N900: fixing MMC at boot
2014-12-06 18:04 ` Pavel Machek
@ 2014-12-06 18:08 ` Pali Rohár
0 siblings, 0 replies; 4+ messages in thread
From: Pali Rohár @ 2014-12-06 18:08 UTC (permalink / raw)
To: Pavel Machek
Cc: sre, sre, kernel list, linux-arm-kernel, linux-omap, tony,
khilman, aaro.koskinen, freemangordon
[-- Attachment #1: Type: Text/Plain, Size: 870 bytes --]
On Saturday 06 December 2014 19:04:29 Pavel Machek wrote:
> On Sat 2014-12-06 18:40:16, Pali Rohár wrote:
> > On Saturday 06 December 2014 18:35:27 Pavel Machek wrote:
> > > Hi!
> > >
> > > For a long time, MMC was not working during boot...
> > > (making the box unusable without nfsroot). It seems
> > > problem is in the regulators, because with diff below, I
> > > was able to mount root on SD card for a first time ... in
> > > a long time.
> >
> > Hi, do you mean external SD card or internal eMMC (MyDocs)?
>
> I mean u-SD card. But it is strange. I reverted the patch now,
> and it still works. Not sure why or what I've done
> differently.
>
> Pavel
Remove battery wait some time and try again. Maybe you configured
something which can be cleared only after full device shutdown...
--
Pali Rohár
pali.rohar@gmail.com
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-12-06 18:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-06 17:35 N900: fixing MMC at boot Pavel Machek
2014-12-06 17:40 ` Pali Rohár
2014-12-06 18:04 ` Pavel Machek
2014-12-06 18:08 ` Pali Rohár
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).