[coreboot] Re: Idiots guide to devicetree.cb

2020-11-25 Thread mturney
On 2020-11-24 03:05, Andy Pont wrote: Hello, Is there an idiots guide to the definitions in devicetree.cb? Trying to make sense of the USB and PCIe configuration stuff. I don't know if these qualify as part of an idiots guide, but I found these links especially useful when learning

[coreboot] Re: compiler/toolchain issue?

2019-06-19 Thread mturney
On 2019-06-14 13:47, Patrick Georgi wrote: Hey Mike, /local/mnt/workspace/mturney/gitrepos/qualcomm/chromebook/cbdc-meta/standalone/coreboot/util/cbfstool/cbfstool.c:546:19: note: in expansion of macro 'MAX' uint32_t size = MAX(hs, param.padding); This is built with your host compiler

[coreboot] compiler/toolchain issue?

2019-06-14 Thread mturney
s, 0 Remarks, 234 Optimizations IASL build/dsdt.aml disassembled correctly. HOSTCC cbfstool/cbfstool.o In file included from :0:0: /local/mnt/workspace/mturney/gitrepos/qualcomm/chromebook/cbdc-meta/standalone/coreboot/util/cbfstool/cbfstool.c: In function 'cbfs_add_component': /local

Re: [coreboot] VbTryLoadKernel restriction on 512 byte sector size

2018-04-04 Thread mturney
On 2018-04-03 10:02, Aaron Durbin via coreboot wrote: On Tue, Apr 3, 2018 at 10:26 AM, wrote: Folks, Can anyone on this list expound on why VbTryLoadKernel() performs a sanity-check on bytes_per_lba != 512? --->---/* --->--- * Sanity-check what we

[coreboot] VbTryLoadKernel restriction on 512 byte sector size

2018-04-03 Thread mturney
Folks, Can anyone on this list expound on why VbTryLoadKernel() performs a sanity-check on bytes_per_lba != 512? We are working on supporting a board that will require bytes_per_lba == 4K. Cheers, T.mike -- coreboot mailing list: coreboot@coreboot.org

[coreboot] coreboot-checkpath ?

2018-03-16 Thread mturney
Folks, I have a number of patches failing build-bot step with an indication that coreboot-checkpath should be run. How do I run this check locally? Is this installed as part of 'make gitconfig' which I can't run on my older git install? Can I download this script(?) Any suggestions on how

Re: [coreboot] armv8 mmu limitation?

2018-03-06 Thread mturney
On 2018-03-06 12:57, mtur...@codeaurora.org wrote: Folks, We are working with a device that has 8GB DDR. Using the basic mmu_config_range() call, twice, like this: mmu_config_range((void *)0x08000, DRAMSIZE, UNCACHED_MEM); mmu_config_range((void *)0x18000, DRAMSIZE,

[coreboot] armv8 mmu limitation?

2018-03-06 Thread mturney
Folks, We are working with a device that has 8GB DDR. Using the basic mmu_config_range() call, twice, like this: mmu_config_range((void *)0x08000, DRAMSIZE, UNCACHED_MEM); mmu_config_range((void *)0x18000, DRAMSIZE, UNCACHED_MEM); print messages from Coreboot suggest

Re: [coreboot] Real name policy

2018-03-06 Thread mturney
On 2018-03-05 17:50, David Hendricks wrote: On Mon, Mar 5, 2018 at 1:13 PM, taii...@gmx.com wrote: I can't understand as to why doing a git commit requires your "real" name SCO. Ref: https://lkml.org/lkml/2004/5/23/10 Wow, SCO, really? If anybody on list is interested,

[coreboot] make gitconfig not working for me with git 1.9.1

2018-02-23 Thread mturney
14.04 mturney@mturney-linux:/local/mnt/workspace/mturney/gitrepos/public/coreboot$ make gitconfig fatal: ambiguous argument 'hooks': unknown revision or path not in the working tree. Use '--' to separate paths from revisions, like this: 'git [...] -- [...]' mkdir: unrecognized option '--git-path hook

[coreboot] Power off in Coreboot?

2018-01-29 Thread mturney
Folks, We are working through the PMIC requirements for Coreboot on our hardware. I understand the need for Coreboot to command a reboot, e.g. VerStage detects FW_A is bad and wants to try FW_B. What is not clear is what is the use-case for Coreboot to command a power-off. In grepping the