Re: [PATCH v2] tools/helpers/init-dom0less: fix vcpu availability

2024-08-20 Thread Amneesh Singh
On 16:24-20240820, Anthony PERARD wrote: > On Tue, Aug 20, 2024 at 01:34:17PM +0530, Amneesh Singh wrote: > > diff --git a/tools/helpers/init-dom0less.c b/tools/helpers/init-dom0less.c > > index fee9345..722a5af 100644 > > --- a/tools/helpers/init-dom0less.c > > +++ b/to

Re: [EXTERNAL] Re: [PATCH v2] drivers: char: omap-uart: provide a default clock frequency

2024-08-20 Thread Amneesh Singh
Hello, On 10:03-20240820, Julien Grall wrote: > Hi, > > On 20/08/2024 10:00, Michal Orzel wrote: > > On 20/08/2024 10:22, Amneesh Singh wrote: > >> > >> > >> Quite a few TI K3 devices do not have clock-frequency specified in their > >> respecti

[PATCH v2] drivers: char: omap-uart: provide a default clock frequency

2024-08-20 Thread Amneesh Singh
: Amneesh Singh --- xen/drivers/char/omap-uart.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) --- v1: https://lore.kernel.org/all/20240719113313.145587-1-a-sing...@ti.com/T/ v1 -> v2 - Ditch adding a dtuart option - Use a default value instead This default is the same one as found

[PATCH v2] tools/helpers/init-dom0less: fix vcpu availability

2024-08-20 Thread Amneesh Singh
Currently, writing at cpu//availability in xenstore fails for a couple of reasons: a trailing slash in the path and the fact that cpupool isn't a bitmap but the cpupool id. This patch fixes this by just getting libxl_vcpuinfo for each dom0less domain. Signed-off-by: Amneesh Singh ---

Re: [PATCH] drivers: char: omap-uart: add "clock-hz" option

2024-08-06 Thread Amneesh Singh
Hi On 12:08-20240806, Julien Grall wrote: > Hi, > > On 06/08/2024 11:35, Amneesh Singh wrote: > > On 10:56-20240806, Julien Grall wrote: > >> On 06/08/2024 10:50, Amneesh Singh wrote: > >>> On 10:16-20240806, Julien Grall wrote: > >>>> Hi, >

Re: [PATCH] tools/helpers/init-dom0less: fix vcpu availability

2024-08-06 Thread Amneesh Singh
CCing the maintainer

Re: [PATCH] drivers: char: omap-uart: add "clock-hz" option

2024-08-06 Thread Amneesh Singh
On 10:56-20240806, Julien Grall wrote: > On 06/08/2024 10:50, Amneesh Singh wrote: > > On 10:16-20240806, Julien Grall wrote: > >> Hi, > >> > >> On 19/07/2024 12:33, Amneesh Singh wrote: > >>> Quite a few TI K3 devices do not have clock-frequenc

Re: [PATCH] drivers: char: omap-uart: add "clock-hz" option

2024-08-06 Thread Amneesh Singh
On 10:16-20240806, Julien Grall wrote: > Hi, > > On 19/07/2024 12:33, Amneesh Singh wrote: > > Quite a few TI K3 devices do not have clock-frequency specified in their > > respective UART nodes. > > Can you outline why fixing the device-tree is not solution? Because o

Re: [PATCH] drivers: char: omap-uart: add "clock-hz" option

2024-08-06 Thread Amneesh Singh
Was not using my usual mailing client, hence the abomination on the web view of the mailing list. Pardon the subject too. Apologies Amneesh

Re: [EXTERNAL] Re: [PATCH] drivers: char: omap-uart: add "clock-hz" option

2024-08-06 Thread Amneesh Singh
Hi, thanks a lot for the review! On 06/08/24 13:23, Michal Orzel wrote: Hi, You sent this patch to xen-devel but forgot to CC maintainers. For the future, please use scripts/add_maintainers.pl. CCing them now. Apologies, was not aware of that. On 19/07/2024 13:33, Amneesh Singh wrote

[PATCH] tools/helpers/init-dom0less: fix vcpu availability

2024-08-02 Thread Amneesh Singh
Currently, writing at cpu//availability in xenstore fails for a couple of reasons: a trailing slash in the path and the fact that cpupool isn't a bitmap but the cpupool id. This patch fixes this by just getting libxl_vcpuinfo for each dom0less domain. Signed-off-by: Amneesh Singh ---

init-dom0less: Weird use of cpupool in xl dominfo

2024-07-31 Thread Amneesh Singh
Hello, I was going through the source code for init-dom0less as I was facing some issue after applying this patchset. Feel free to ignore it however, as it seems unrelated to the issue I am encountering. https://lists.xenproject.org/archives/html/xen-devel/2024-05/msg01825.html One peculiar thing

Re: [PATCH] xen: introduce xen_vring_use_dma

2024-07-30 Thread Amneesh Singh
Hi Stefano, First off, apologies for bumping this dead thread. I came across this patch signed off by you recently https://github.com/Xilinx/linux-xlnx/commit/72cb5514953be3aa2ac00c57c9eaa100ecc67176 and was wondering if a patch replacing xen_domain() with xen_pv_domain() in vring_use_dma_api()

[PATCH] drivers: char: omap-uart: add "clock-hz" option

2024-07-19 Thread Amneesh Singh
not specified it will fallback to the same DT parsing as before. For example, dtuart=serial2:clock-hz=4800 can be a valid bootarg. Signed-off-by: Amneesh Singh --- xen/drivers/char/omap-uart.c | 62 +--- 1 file changed, 50 insertions(+), 12 deletions(-) diff