Re: [PATCH v3 00/15] raspi: add the bcm2835 cprman clock manager

2020-10-27 Thread Peter Maydell
On Tue, 27 Oct 2020 at 08:55, Philippe Mathieu-Daudé wrote: > > Hi Peter, > > On 10/19/20 9:31 PM, Peter Maydell wrote: > > On Mon, 19 Oct 2020 at 16:45, Peter Maydell > > wrote: > >> > >> On Sat, 10 Oct 2020 at 14:57, Luc Michel wrote: > >>> > >>> v2 -> v3: > >>> - patch 03: moved clock_new

Re: [PATCH v3 00/15] raspi: add the bcm2835 cprman clock manager

2020-10-27 Thread Philippe Mathieu-Daudé
Hi Peter, On 10/19/20 9:31 PM, Peter Maydell wrote: > On Mon, 19 Oct 2020 at 16:45, Peter Maydell wrote: >> >> On Sat, 10 Oct 2020 at 14:57, Luc Michel wrote: >>> >>> v2 -> v3: >>> - patch 03: moved clock_new definition to hw/core/clock.c [Phil] >>> - patch 03: commit message typo [Clement]

Re: [PATCH v3 00/15] raspi: add the bcm2835 cprman clock manager

2020-10-23 Thread Philippe Mathieu-Daudé
On 10/23/20 5:55 AM, Guenter Roeck wrote: On 10/22/20 3:06 PM, Philippe Mathieu-Daudé wrote: Cc'ing Guenter who had a similar patch and might be interested to test :) I applied the series on top of qemu mainline and ran all my test with it (raspi2 with qemu-system-arm as well as qemu-system-aa

Re: [PATCH v3 00/15] raspi: add the bcm2835 cprman clock manager

2020-10-22 Thread Guenter Roeck
On 10/22/20 3:06 PM, Philippe Mathieu-Daudé wrote: > Cc'ing Guenter who had a similar patch and might be interested > to test :) > I applied the series on top of qemu mainline and ran all my test with it (raspi2 with qemu-system-arm as well as qemu-system-aarch64, and raspi3 in both big endian and

Re: [PATCH v3 00/15] raspi: add the bcm2835 cprman clock manager

2020-10-22 Thread Guenter Roeck
Hi, On 10/22/20 3:06 PM, Philippe Mathieu-Daudé wrote: > Cc'ing Guenter who had a similar patch and might be interested > to test :) > great. I think my patch doesn't work anymore since qemu 5.0 (at least not for raspi3), and it was pretty hackish anyway. I'll give the series a try. Guenter >

Re: [PATCH v3 00/15] raspi: add the bcm2835 cprman clock manager

2020-10-22 Thread Philippe Mathieu-Daudé
Cc'ing Guenter who had a similar patch and might be interested to test :) patch 16/15 fixup: https://www.mail-archive.com/qemu-devel@nongnu.org/msg752113.html On 10/10/20 3:57 PM, Luc Michel wrote: v2 -> v3: - patch 03: moved clock_new definition to hw/core/clock.c [Phil] - patch 03: comm

Re: [PATCH v3 00/15] raspi: add the bcm2835 cprman clock manager

2020-10-19 Thread Peter Maydell
On Mon, 19 Oct 2020 at 16:45, Peter Maydell wrote: > > On Sat, 10 Oct 2020 at 14:57, Luc Michel wrote: > > > > v2 -> v3: > > - patch 03: moved clock_new definition to hw/core/clock.c [Phil] > > - patch 03: commit message typo [Clement] > > - patch 10: clarifications around the CM_CTL/CM_DIB

Re: [PATCH v3 00/15] raspi: add the bcm2835 cprman clock manager

2020-10-19 Thread Peter Maydell
On Sat, 10 Oct 2020 at 14:57, Luc Michel wrote: > > v2 -> v3: > - patch 03: moved clock_new definition to hw/core/clock.c [Phil] > - patch 03: commit message typo [Clement] > - patch 10: clarifications around the CM_CTL/CM_DIBV mux registers. > reg_cm replaced with reg_ctl and

Re: [PATCH v3 00/15] raspi: add the bcm2835 cprman clock manager

2020-10-16 Thread Philippe Mathieu-Daudé
On 10/10/20 3:57 PM, Luc Michel wrote: [...] Hi, This series add the BCM2835 CPRMAN clock manager peripheral to the Raspberry Pi machine. Series: Tested-by: Philippe Mathieu-Daudé

[PATCH v3 00/15] raspi: add the bcm2835 cprman clock manager

2020-10-10 Thread Luc Michel
v2 -> v3: - patch 03: moved clock_new definition to hw/core/clock.c [Phil] - patch 03: commit message typo [Clement] - patch 10: clarifications around the CM_CTL/CM_DIBV mux registers. reg_cm replaced with reg_ctl and reg_div. Add some comments for clarity. [Phil]