All of lore.kernel.org
 help / color / mirror / Atom feed
* Can't reboot Dell Latitude E6420
@ 2011-05-25 20:09 Roger Cruz
  2011-05-25 21:19 ` Konrad Rzeszutek Wilk
  0 siblings, 1 reply; 3+ messages in thread
From: Roger Cruz @ 2011-05-25 20:09 UTC (permalink / raw)
  To: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 1071 bytes --]


I'm running Xen 4.0.1 on a Sandybridge-based Dell Latitude E6420 and I'm finding that the platform reboot operation hangs.  

I've done some investigation and have tracked down the code that dom0 makes in order to reboot the platform is HYPERVISOR_sched_op(SCHEDOP_shutdown, code),
where 'code' is SHUTDOWN_reboot.  This hypercall makes its way to the Xen routine  machine_restart() in xen/arch/x86/shutdown.c which performs a reboot based on the default reboot_type=BOOT_ACPI.  I have overrode the reboot_type and made it BOOT_TRIPLE and BOOT_KBD, and both of these options still hang after the invocation that is supposed to reboot the platform.

I experienced the same behavior from a serial Xen console 'R' reboot action, which is expected since it too calls machine_restart().

I'm out of ideas here as to why these reboot calls are not working.  I figured that the triple fault of the processor would be one that always works but it still hangs for me.  Anyone have any ideas or suggestions for additional tests?

Thank you in advance.

Roger R. Cruz

[-- Attachment #1.2: Type: text/html, Size: 1527 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

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

* Re: Can't reboot Dell Latitude E6420
  2011-05-25 20:09 Can't reboot Dell Latitude E6420 Roger Cruz
@ 2011-05-25 21:19 ` Konrad Rzeszutek Wilk
  2011-05-26 15:23   ` Roger Cruz
  0 siblings, 1 reply; 3+ messages in thread
From: Konrad Rzeszutek Wilk @ 2011-05-25 21:19 UTC (permalink / raw)
  To: Roger Cruz; +Cc: xen-devel

On Wed, May 25, 2011 at 03:09:54PM -0500, Roger Cruz wrote:
> 
> I'm running Xen 4.0.1 on a Sandybridge-based Dell Latitude E6420 and I'm finding that the platform reboot operation hangs.  

Is that the prototype one?
> 
> I've done some investigation and have tracked down the code that dom0 makes in order to reboot the platform is HYPERVISOR_sched_op(SCHEDOP_shutdown, code),
> where 'code' is SHUTDOWN_reboot.  This hypercall makes its way to the Xen routine  machine_restart() in xen/arch/x86/shutdown.c which performs a reboot based on the default reboot_type=BOOT_ACPI.  I have overrode the reboot_type and made it BOOT_TRIPLE and BOOT_KBD, and both of these options still hang after the invocation that is supposed to reboot the platform.
> 
> I experienced the same behavior from a serial Xen console 'R' reboot action, which is expected since it too calls machine_restart().
> 
> I'm out of ideas here as to why these reboot calls are not working.  I figured that the triple fault of the processor would be one that always works but it still hangs for me.  Anyone have any ideas or suggestions for additional tests?

Hm, you could fiddle with the Northbridge: http://smackerelofopinion.blogspot.com/2011/02/turning-off-pc-using-intel-82801-io.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+ASmackerelOfOpinion+%28A+Smackerel+of+Opinion%29

.. how did it reboot in the past? Does it reboot when you run under baremetal? I wonder what mechanism the baremetal
employs - it might be that we are missing one for the Dell machines (check the DMI lookup tables in the Linux kernel)?

> 
> Thank you in advance.
> 
> Roger R. Cruz

> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel

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

* RE: Can't reboot Dell Latitude E6420
  2011-05-25 21:19 ` Konrad Rzeszutek Wilk
@ 2011-05-26 15:23   ` Roger Cruz
  0 siblings, 0 replies; 3+ messages in thread
From: Roger Cruz @ 2011-05-26 15:23 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk; +Cc: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 2349 bytes --]

Konrad,

This system has the latest BIOS update (A04) and it can be rebooted fine from Windows 7.

Thanks

Roger R. Cruz


-----Original Message-----
From: Konrad Rzeszutek Wilk [mailto:konrad.wilk@oracle.com]
Sent: Wed 5/25/2011 5:19 PM
To: Roger Cruz
Cc: xen-devel@lists.xensource.com
Subject: Re: [Xen-devel] Can't reboot Dell Latitude E6420
 
On Wed, May 25, 2011 at 03:09:54PM -0500, Roger Cruz wrote:
> 
> I'm running Xen 4.0.1 on a Sandybridge-based Dell Latitude E6420 and I'm finding that the platform reboot operation hangs.  

Is that the prototype one?
> 
> I've done some investigation and have tracked down the code that dom0 makes in order to reboot the platform is HYPERVISOR_sched_op(SCHEDOP_shutdown, code),
> where 'code' is SHUTDOWN_reboot.  This hypercall makes its way to the Xen routine  machine_restart() in xen/arch/x86/shutdown.c which performs a reboot based on the default reboot_type=BOOT_ACPI.  I have overrode the reboot_type and made it BOOT_TRIPLE and BOOT_KBD, and both of these options still hang after the invocation that is supposed to reboot the platform.
> 
> I experienced the same behavior from a serial Xen console 'R' reboot action, which is expected since it too calls machine_restart().
> 
> I'm out of ideas here as to why these reboot calls are not working.  I figured that the triple fault of the processor would be one that always works but it still hangs for me.  Anyone have any ideas or suggestions for additional tests?

Hm, you could fiddle with the Northbridge: http://smackerelofopinion.blogspot.com/2011/02/turning-off-pc-using-intel-82801-io.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+ASmackerelOfOpinion+%28A+Smackerel+of+Opinion%29

.. how did it reboot in the past? Does it reboot when you run under baremetal? I wonder what mechanism the baremetal
employs - it might be that we are missing one for the Dell machines (check the DMI lookup tables in the Linux kernel)?

> 
> Thank you in advance.
> 
> Roger R. Cruz

> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel


No virus found in this incoming message.
Checked by AVG - www.avg.com 
Version: 9.0.901 / Virus Database: 271.1.1/3632 - Release Date: 05/25/11 02:34:00


[-- Attachment #1.2: Type: text/html, Size: 3313 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

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

end of thread, other threads:[~2011-05-26 15:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-25 20:09 Can't reboot Dell Latitude E6420 Roger Cruz
2011-05-25 21:19 ` Konrad Rzeszutek Wilk
2011-05-26 15:23   ` Roger Cruz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.