* [Qemu-devel] [PATCH] e1000: document ICS read behaviour
@ 2013-01-09 22:01 Michael S. Tsirkin
2013-01-10 8:26 ` Stefan Hajnoczi
0 siblings, 1 reply; 7+ messages in thread
From: Michael S. Tsirkin @ 2013-01-09 22:01 UTC (permalink / raw)
To: qemu-devel, Bill Paul
Cc: Paolo Bonzini, Anthony Liguori, Jason Wang, Stefan Hajnoczi
Add code comment to clarify the reason we set ICS with ICR:
the reason was previously undocumented and git
log (commit b1332393cdd7d023de8f1f8aa136ee7866a18968)
confused rather than clarified the comments.
Digging in the mailing list archives gives the real reason
https://lists.gnu.org/archive/html/qemu-devel/2009-06/msg00401.html
Add code comment with an explanation supplied by Bill Paul.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
hw/e1000.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/hw/e1000.c b/hw/e1000.c
index 92fb00a..73e360e 100644
--- a/hw/e1000.c
+++ b/hw/e1000.c
@@ -230,7 +230,18 @@ set_interrupt_cause(E1000State *s, int index, uint32_t val)
val |= E1000_ICR_INT_ASSERTED;
}
s->mac_reg[ICR] = val;
+
+ /*
+ * Make sure ICR and ICS registers have the same value.
+ * The spec says that the ICS register is write-only. However in practice,
+ * on real hardware ICS is readable, and for reads it has the same value as
+ * ICR (except that ICS does not have the clear on read behaviour of ICR).
+ *
+ * The VxWorks PRO/1000 driver relies on this behaviour, so we have to
+ * emulate it.
+ */
s->mac_reg[ICS] = val;
+
qemu_set_irq(s->dev.irq[0], (s->mac_reg[IMS] & s->mac_reg[ICR]) != 0);
}
--
MST
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] [PATCH] e1000: document ICS read behaviour
2013-01-09 22:01 [Qemu-devel] [PATCH] e1000: document ICS read behaviour Michael S. Tsirkin
@ 2013-01-10 8:26 ` Stefan Hajnoczi
2013-01-10 10:17 ` Michael S. Tsirkin
0 siblings, 1 reply; 7+ messages in thread
From: Stefan Hajnoczi @ 2013-01-10 8:26 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: Jason Wang, Paolo Bonzini, Anthony Liguori, Bill Paul, qemu-devel
On Thu, Jan 10, 2013 at 12:01:22AM +0200, Michael S. Tsirkin wrote:
> Add code comment to clarify the reason we set ICS with ICR:
> the reason was previously undocumented and git
> log (commit b1332393cdd7d023de8f1f8aa136ee7866a18968)
> confused rather than clarified the comments.
> Digging in the mailing list archives gives the real reason
> https://lists.gnu.org/archive/html/qemu-devel/2009-06/msg00401.html
>
> Add code comment with an explanation supplied by Bill Paul.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
> hw/e1000.c | 11 +++++++++++
> 1 file changed, 11 insertions(+)
Thanks, applied to the net tree:
https://github.com/stefanha/qemu/commits/net
Stefan
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] [PATCH] e1000: document ICS read behaviour
2013-01-10 8:26 ` Stefan Hajnoczi
@ 2013-01-10 10:17 ` Michael S. Tsirkin
2013-01-10 11:50 ` Stefan Hajnoczi
0 siblings, 1 reply; 7+ messages in thread
From: Michael S. Tsirkin @ 2013-01-10 10:17 UTC (permalink / raw)
To: Stefan Hajnoczi
Cc: Jason Wang, Paolo Bonzini, Anthony Liguori, Bill Paul, qemu-devel
On Thu, Jan 10, 2013 at 09:26:47AM +0100, Stefan Hajnoczi wrote:
> On Thu, Jan 10, 2013 at 12:01:22AM +0200, Michael S. Tsirkin wrote:
> > Add code comment to clarify the reason we set ICS with ICR:
> > the reason was previously undocumented and git
> > log (commit b1332393cdd7d023de8f1f8aa136ee7866a18968)
> > confused rather than clarified the comments.
> > Digging in the mailing list archives gives the real reason
> > https://lists.gnu.org/archive/html/qemu-devel/2009-06/msg00401.html
> >
> > Add code comment with an explanation supplied by Bill Paul.
> >
> > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> > ---
> > hw/e1000.c | 11 +++++++++++
> > 1 file changed, 11 insertions(+)
>
> Thanks, applied to the net tree:
> https://github.com/stefanha/qemu/commits/net
>
> Stefan
Actually I'm going to send v2 with a minor tweak.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] [PATCH] e1000: document ICS read behaviour
2013-01-10 10:17 ` Michael S. Tsirkin
@ 2013-01-10 11:50 ` Stefan Hajnoczi
0 siblings, 0 replies; 7+ messages in thread
From: Stefan Hajnoczi @ 2013-01-10 11:50 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: Jason Wang, Paolo Bonzini, Anthony Liguori, Bill Paul, qemu-devel
On Thu, Jan 10, 2013 at 12:17:14PM +0200, Michael S. Tsirkin wrote:
> On Thu, Jan 10, 2013 at 09:26:47AM +0100, Stefan Hajnoczi wrote:
> > On Thu, Jan 10, 2013 at 12:01:22AM +0200, Michael S. Tsirkin wrote:
> > > Add code comment to clarify the reason we set ICS with ICR:
> > > the reason was previously undocumented and git
> > > log (commit b1332393cdd7d023de8f1f8aa136ee7866a18968)
> > > confused rather than clarified the comments.
> > > Digging in the mailing list archives gives the real reason
> > > https://lists.gnu.org/archive/html/qemu-devel/2009-06/msg00401.html
> > >
> > > Add code comment with an explanation supplied by Bill Paul.
> > >
> > > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> > > ---
> > > hw/e1000.c | 11 +++++++++++
> > > 1 file changed, 11 insertions(+)
> >
> > Thanks, applied to the net tree:
> > https://github.com/stefanha/qemu/commits/net
> >
> > Stefan
>
> Actually I'm going to send v2 with a minor tweak.
No problem. I will wait with the next net pull request until v2 has
been merged.
Stefan
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Qemu-devel] [PATCH] e1000: document ICS read behaviour
@ 2013-01-10 12:03 Michael S. Tsirkin
2013-01-10 12:08 ` Michael S. Tsirkin
2013-01-11 9:30 ` Stefan Hajnoczi
0 siblings, 2 replies; 7+ messages in thread
From: Michael S. Tsirkin @ 2013-01-10 12:03 UTC (permalink / raw)
To: qemu-devel, Bill Paul
Cc: Paolo Bonzini, Anthony Liguori, Jason Wang, Stefan Hajnoczi,
Michael S. Tsirkin
Add code comment to clarify the reason we set ICS with ICR:
the reason was previously undocumented and git
log (commit b1332393cdd7d023de8f1f8aa136ee7866a18968)
confused rather than clarified the comments.
Digging in the mailing list archives gives the real reason
https://lists.gnu.org/archive/html/qemu-devel/2009-06/msg00401.html
Add code comment with an explanation supplied by Bill Paul.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
hw/e1000.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/hw/e1000.c b/hw/e1000.c
index 92fb00a..d10119c 100644
--- a/hw/e1000.c
+++ b/hw/e1000.c
@@ -230,7 +230,17 @@ set_interrupt_cause(E1000State *s, int index, uint32_t val)
val |= E1000_ICR_INT_ASSERTED;
}
s->mac_reg[ICR] = val;
+
+ /*
+ * Make sure ICR and ICS registers have the same value.
+ * The spec says that the ICS register is write-only. However in practice,
+ * on real hardware ICS is readable, and for reads it has the same value as
+ * ICR (except that ICS does not have the clear on read behaviour of ICR).
+ *
+ * The VxWorks PRO/1000 driver uses this behaviour.
+ */
s->mac_reg[ICS] = val;
+
qemu_set_irq(s->dev.irq[0], (s->mac_reg[IMS] & s->mac_reg[ICR]) != 0);
}
--
MST
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] [PATCH] e1000: document ICS read behaviour
2013-01-10 12:03 Michael S. Tsirkin
@ 2013-01-10 12:08 ` Michael S. Tsirkin
2013-01-11 9:30 ` Stefan Hajnoczi
1 sibling, 0 replies; 7+ messages in thread
From: Michael S. Tsirkin @ 2013-01-10 12:08 UTC (permalink / raw)
To: qemu-devel, Bill Paul
Cc: Paolo Bonzini, Anthony Liguori, Jason Wang, Stefan Hajnoczi
On Thu, Jan 10, 2013 at 02:03:39PM +0200, Michael S. Tsirkin wrote:
> Add code comment to clarify the reason we set ICS with ICR:
> the reason was previously undocumented and git
> log (commit b1332393cdd7d023de8f1f8aa136ee7866a18968)
> confused rather than clarified the comments.
> Digging in the mailing list archives gives the real reason
> https://lists.gnu.org/archive/html/qemu-devel/2009-06/msg00401.html
>
> Add code comment with an explanation supplied by Bill Paul.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This is v2 of the patch.
> ---
> hw/e1000.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/hw/e1000.c b/hw/e1000.c
> index 92fb00a..d10119c 100644
> --- a/hw/e1000.c
> +++ b/hw/e1000.c
> @@ -230,7 +230,17 @@ set_interrupt_cause(E1000State *s, int index, uint32_t val)
> val |= E1000_ICR_INT_ASSERTED;
> }
> s->mac_reg[ICR] = val;
> +
> + /*
> + * Make sure ICR and ICS registers have the same value.
> + * The spec says that the ICS register is write-only. However in practice,
> + * on real hardware ICS is readable, and for reads it has the same value as
> + * ICR (except that ICS does not have the clear on read behaviour of ICR).
> + *
> + * The VxWorks PRO/1000 driver uses this behaviour.
> + */
> s->mac_reg[ICS] = val;
> +
> qemu_set_irq(s->dev.irq[0], (s->mac_reg[IMS] & s->mac_reg[ICR]) != 0);
> }
>
> --
> MST
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Qemu-devel] [PATCH] e1000: document ICS read behaviour
2013-01-10 12:03 Michael S. Tsirkin
2013-01-10 12:08 ` Michael S. Tsirkin
@ 2013-01-11 9:30 ` Stefan Hajnoczi
1 sibling, 0 replies; 7+ messages in thread
From: Stefan Hajnoczi @ 2013-01-11 9:30 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: Anthony Liguori, Bill Paul, Jason Wang, qemu-devel,
Stefan Hajnoczi, Paolo Bonzini
On Thu, Jan 10, 2013 at 02:03:39PM +0200, Michael S. Tsirkin wrote:
> Add code comment to clarify the reason we set ICS with ICR:
> the reason was previously undocumented and git
> log (commit b1332393cdd7d023de8f1f8aa136ee7866a18968)
> confused rather than clarified the comments.
> Digging in the mailing list archives gives the real reason
> https://lists.gnu.org/archive/html/qemu-devel/2009-06/msg00401.html
>
> Add code comment with an explanation supplied by Bill Paul.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
> hw/e1000.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
Thanks, applied to the net tree:
https://github.com/stefanha/qemu/commits/net
Stefan
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-01-11 9:30 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-09 22:01 [Qemu-devel] [PATCH] e1000: document ICS read behaviour Michael S. Tsirkin
2013-01-10 8:26 ` Stefan Hajnoczi
2013-01-10 10:17 ` Michael S. Tsirkin
2013-01-10 11:50 ` Stefan Hajnoczi
-- strict thread matches above, loose matches on Subject: below --
2013-01-10 12:03 Michael S. Tsirkin
2013-01-10 12:08 ` Michael S. Tsirkin
2013-01-11 9:30 ` Stefan Hajnoczi
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).