Re: [PATCH v3 0/4] sunxi: SPL FIT support for 32-bit sunxi SoCs

2023-11-01 Thread Jesse T
On Tue, Oct 31, 2023 at 1:18 AM Samuel Holland wrote: > > This series makes the necessary changes so 32-bit sunxi SoCs can load > additional device trees or firmware from SPL along with U-Boot proper. > Crust (SCP firmware) has support for A33 and H3, and H3 also needs to > load an eGon blob to su

Re: [PATCH] Convert CFG_SYS_UBOOT_START to Kconfig

2023-08-24 Thread Jesse T
On Thu, Aug 24, 2023 at 4:01 PM Simon Glass wrote: > > Hi Jesse, > > On Wed, 23 Aug 2023 at 20:30, Jesse Taube wrote: > > > > Commit 65cc0e2a65d2 ("global: Move remaining CONFIG_SYS_* to CFG_SYS_*") > > renamed CONFIG_SYS_UBOOT_START to CFG_SYS_UBOOT_START. Unfortunately, > > this meant that the

Re: [PATCH v2] Convert CFG_SYS_UBOOT_START to Kconfig

2023-08-25 Thread Jesse T
On Fri, Aug 25, 2023 at 2:06 PM Simon Glass wrote: > > On Fri, 25 Aug 2023 at 08:49, Tom Rini wrote: > > > > On Thu, Aug 24, 2023 at 09:59:48PM -0400, Jesse Taube wrote: > > > > > Commit 65cc0e2a65d2 ("global: Move remaining CONFIG_SYS_* to CFG_SYS_*") > > > renamed CONFIG_SYS_UBOOT_START to CFG_

Re: [PATCH v1 1/2] imx: imxrt1050-evk: Add support for SPI flash booting

2024-01-30 Thread Jesse T
On Mon, Jan 29, 2024 at 8:34 AM Fabio Estevam wrote: > > On Sun, Jan 28, 2024 at 6:43 PM Jesse Taube wrote: > > > +++ b/configs/imxrt1050-evk_fspi_defconfig > > @@ -0,0 +1,100 @@ > > +CONFIG_ARM=y > > +CONFIG_SYS_DCACHE_OFF=y > > Out of curiosity: what are the problems if the D-Cache is turned on

Re: [PATCH v1] doc: imx: imxrt1170: Document imxrt1170-evk board

2024-02-02 Thread Jesse T
On Fri, Feb 2, 2024 at 3:40 AM Heinrich Schuchardt wrote: > > On 2/1/24 16:00, Jesse Taube wrote: > > Add documentation for imxrt1170-evk. > > > > Signed-off-by: Jesse Taube > > --- > > doc/board/nxp/imxrt1170-evk.rst | 42 + > > 1 file changed, 42 insertions(+)

Re: [PATCH v2 1/2] imx: imxrt1050-evk: Add support for SPI flash booting

2024-02-09 Thread Jesse T
On Thu, Feb 8, 2024 at 8:08 AM Fabio Estevam wrote: > > Hi Jesse, > > On Tue, Feb 6, 2024 at 1:40 PM Jesse Taube wrote: > > > > Add support for booting the imxrt1050-evk from spi. > > Add imximage config and the ability for SPL to boot from NOR. > > > > Signed-off-by: Jesse Taube > > This causes

Re: [PATCH v3 1/3] arm: dts: imxrt: Add binman support

2024-02-19 Thread Jesse T
On Sun, Feb 18, 2024 at 9:12 PM Fabio Estevam wrote: > > On Sun, Feb 18, 2024 at 10:39 PM Fabio Estevam wrote: > > > > Hi Jesse, > > > > On Sun, Feb 18, 2024 at 6:20 PM Jesse Taube wrote: > > > > > > Enable binman in Kconfig and in device tree. > > > > Please explain the rationale for doing this

Re: [PATCH v4 1/2] imx: imxrt1050-evk: Add support for SPI flash booting

2024-02-19 Thread Jesse T
On Mon, Feb 19, 2024 at 7:53 PM Fabio Estevam wrote: > > On Mon, Feb 19, 2024 at 8:01 PM Jesse Taube wrote: > > > > Add support for booting the imxrt1050-evk from spi. > > Add imximage config and the ability for SPL to boot from NOR. > > Enable binman in Kconfig and device tree for imxrt* as it i

Re: [PATCH 02/16] timer: imx-gpt: Add timer support for i.MX SoCs family

2021-04-07 Thread Jesse T
> > > + if (rate == 2400UL) { > > + /* Set timer frequency if using 24M clock source */ > > + if (prescaler > GPT_PR_PRESCALER24M_MAX) > > + return -EINVAL; > > + > In the datasheet for the imxrt1050 the 24Mhz scaler output goes into the normal p

Re: [PATCH v2 1/1] timer: imx-gpt: Add timer support for i.MX SoCs family

2021-02-11 Thread Jesse T
On Wed, Feb 10, 2021 at 3:09 PM Giulio Benetti < giulio.bene...@benettiengineering.com> wrote: > Hi Jesse, > > I re-add all people and ML in Cc so they can follow. Next time reply to > all. > > On 2/10/21 8:00 PM, Jesse Taube wrote: > > > > On 2/10/21 12:49 PM, Giulio Benetti wrote: > >> On 2/10/2

Re: [PATCH v3 1/1] timer: imx-gpt: Add timer support for i.MX SoCs family

2021-02-11 Thread Jesse T
I'm very sorry for my email issues I some how mess it up each time. On Thu, Feb 11, 2021, 8:11 PM Jesse wrote: > From: Jesse Taube > > This timer driver is using GPT Timer (General Purpose Timer) > available on almost all i.MX SoCs family. > Since this driver is only meant to provide u-boot's t

Re: [PATCH v2 1/1] timer: imx-gpt: Add timer support for i.MX SoCs family

2021-02-12 Thread Jesse T
the Linux kernel does it On Fri, Feb 12, 2021, 8:22 PM Giulio Benetti < giulio.bene...@benettiengineering.com> wrote: > Hi Jesse, > > On 2/11/21 7:54 PM, Jesse T wrote: > [SNIP] > > > >>> +static int imx_gpt_timer_probe(struct udevice *dev) >

Re: [PATCH v2] clk: fix clk_get_rate() documentation

2021-02-13 Thread Jesse T
This looks good to me, and helps beginners like me. As for the function itself, i have 2 concerns: If it does return a negative value why is it unsigned, if it is in fact signed that a clock above 2.2Ghz is a negative number. As for the IS_ERR_VALUE macro there still is a chance that it will error

Re: [PATCH v2] clk: fix clk_get_rate() documentation

2021-02-13 Thread Jesse T
Awesome, thanks! I must have forgotten how twos complement works for a sec... On Sat, Feb 13, 2021 at 10:17 PM Giulio Benetti < giulio.bene...@benettiengineering.com> wrote: > Hi Jesse, > > Il giorno 14 feb 2021, alle ore 03:58, Jesse T > ha scritto: > >  > This

Invitation: U-Boot community meeting @ Every 2 weeks from 10am to 11am on Tuesday (EST) (u-boot@lists.denx.de)

2025-02-18 Thread Jesse T
;ROLE=REQ-PARTICIPANT;PARTSTAT=ACCEPTED;RSVP=TRUE ;CN=Jesse T;X-NUM-GUESTS=0:mailto:mr.bossman...@gmail.com X-GOOGLE-CONFERENCE:https://meet.google.com/btj-wgcg-euw X-MICROSOFT-CDO-OWNERAPPTID:-126214536 CREATED:20250218T205738Z DESCRIPTION:U-Boot community meeting\n\n