Ahmad Fatoum

Results 60 comments of Ahmad Fatoum
trafficstars

Just for your information, the stm32mp1 is supported by barebox. It shares some peripherals with the stm32h743 for which there are already barebox drivers: - `st,stm32f7-uart` - `arm,pl18x` (SD/MMC) -...

I let litex generate me a mcs file that I flashed via Vivado. After a reboot, device pops up on PCIe and I can read CSR over PCIe successfully. :)...

I'd like firmware running on the soft core to draw to a frame buffer in host memory.

Thanks! This `SoCRegion(origin=0x3000_0000, size=0x0100_0000)) ` is 1:1 mapped to host memory, right? Is there already a built-in way to make the window in host memory configurable? i.e. * Host allocates...

Debian GNU/Linux 9.2 (stretch), running kernel 4.9.30-rt20 (PREEMPT RT patch). Running on an Intel(R) Xeon(R) CPU E5-1620 v3. Test was with an Intel 82580 which was connected over a TAP...

Hello, any news on this? Is there something I can do to help? (besides fixing the bug, I don't know enough about DPDK to do _that_ :-)

> Note: While some prior assumptions pointed towards the loop_set_block_size: loop5 () has still dirty pages (nrpages=2) error message, I could not find this in the last log. FWIW, see...

The culprit is the `os.path.abspath` in `remote/client.py` here: https://github.com/labgrid-project/labgrid/blob/133b5b7886f0b76a56216100d480e5905604fe0e/labgrid/remote/client.py#L727-L730 `os.path.abspath` uses `os.getcwd` to get the current working directory, which returns `/mnt/something` instead of `/build`. `os.getcwd` seems to be just a...

I looked some more into it and it seems the only way to get `/build` is to manually prefix `$PWD` to the path. I talked this over with @jluebbe and...