From: Wolfram Sang <hidden> Date: 2012-08-30 08:25:18
Hi,
is there a way to find out how the MX28 was booted? I could read out the
bootmode-pins for indication. Still, either by button or by empty NAND,
the CPU could have been booted via USB recovery mode. And going through
the docs and the bootlets code, I can't find a way to determine if USB
recovery was used.
So, can USB recovery mode be detected somehow? Then, this and reading
pins should be sufficent, no?
Thanks,
Wolfram
--
Pengutronix e.K. | Wolfram Sang |
Industrial Linux Solutions | http://www.pengutronix.de/ |
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 198 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20120830/b1553e27/attachment.sig>
On Thu, Aug 30, 2012 at 04:25:18PM +0800, Wolfram Sang wrote:
Hi,
is there a way to find out how the MX28 was booted? I could read out the
bootmode-pins for indication. Still, either by button or by empty NAND,
the CPU could have been booted via USB recovery mode. And going through
the docs and the bootlets code, I can't find a way to determine if USB
recovery was used.
So, can USB recovery mode be detected somehow? Then, this and reading
pins should be sufficent, no?
Add Frank&Peter who may know it.
Regards
Dong Aisheng
is there a way to find out how the MX28 was booted? I could read out
the
quoted
bootmode-pins for indication. Still, either by button or by empty NAND,
the CPU could have been booted via USB recovery mode. And going through
the docs and the bootlets code, I can't find a way to determine if USB
recovery was used.
So, can USB recovery mode be detected somehow? Then, this and reading
pins should be sufficent, no?
Add Frank&Peter who may know it.
As far as I know, the romcode decides which mode is used, I haven't read
romcode, so don't know priority of below booting selection.
OTP, button, boot media (if no boot media, will go to USB recovery mode)
Why do you need to know USB recovery mode at your code?
Peter
From: Wolfram Sang <hidden> Date: 2012-08-30 09:13:18
On Thu, Aug 30, 2012 at 08:47:21AM +0000, Chen Peter-B29397 wrote:
quoted
quoted
is there a way to find out how the MX28 was booted? I could read out
the
quoted
bootmode-pins for indication. Still, either by button or by empty NAND,
the CPU could have been booted via USB recovery mode. And going through
the docs and the bootlets code, I can't find a way to determine if USB
recovery was used.
So, can USB recovery mode be detected somehow? Then, this and reading
pins should be sufficent, no?
Add Frank&Peter who may know it.
Thanks.
As far as I know, the romcode decides which mode is used, I haven't read
romcode, so don't know priority of below booting selection.
For me, this is not about priorities, I just want to know which mode was
really used in the end :)
Why do you need to know USB recovery mode at your code?
Some customers want this to handle the recovery case differently than
the standard case.
If you can't find method at datasheet (like reading some registers), a workaround
is according to usb register, usually, usbcmd.rs (pull-up DP) stands for usb is using
or not.
1. Make sure usbcmd.rs = 0 is the default value.
2. Before the usb code is running, the usbcmd.rs should be 0 at normal mode
So, get a flag before usb code is running
if (usbcmd.rs == 0)
usb_recover_mode = 0;
else
usb_recover_mode = 1;
Peter
Thanks for the help!
Wolfram
--
Pengutronix e.K. | Wolfram Sang
|
Industrial Linux Solutions | http://www.pengutronix.de/
|