From: Sam Ravnborg <sam@ravnborg.org>
To: Andrey Smirnov <andrew.smirnov@gmail.com>
Cc: Barebox List <barebox@lists.infradead.org>
Subject: Re: [PATCH 5/5] at91sam9263ek: enable devicetree
Date: Sat, 30 Dec 2017 22:24:27 +0100 [thread overview]
Message-ID: <20171230212427.GA27962@ravnborg.org> (raw)
In-Reply-To: <CAHQ1cqGiUdFNbAGc_ce5E9cuxu4Ts7oW=XXCOu=Vg34J4yvykg@mail.gmail.com>
Hi Andrey.
> > +static int check_fdt(void)
> > +{
> > + return of_machine_is_compatible("atmel,at91sam9263ek");
> > +}
> > +postcore_initcall(check_fdt);
> > +
>
> Reading this I realized that I wrote buggy initcalls in my original
> AT91SAM9x5EK patches and set a bad example/precedent (I'll submit
> patches to fix that). That check above is just going to print a error
> message, but it wouldn't prevent the code for wrong board from being
> executed (say if you are running image that supports both
> at91sam9263ek and at91sam9g45 on either). IMHO, what you want to do,
> and what I should've done as well, is to add
>
> if (!of_machine_is_compatible("atmel,at91sam9263ek"))
> return 0;
>
> early exit code to the start of very *_callback call. Here's a decent
> example where I didn't screw this up:
>
> https://git.pengutronix.de/cgit/barebox/tree/arch/arm/boards/zii-vf610-dev/board.c#n55
Lucas Stach already told me so in another mail some months ago.
But I somehow missed it when re-spinning the patches.
So very good that you noticed this.
If you do a respin of the AT91SAM9x5EK then consider if the current
DT support for the display can replace what is used today.
> > + /* setup bus-width (8 or 16) */
> > +#if defined(CONFIG_MTD_NAND_ATMEL_BUSWIDTH_16)
> > + ek_nand_smc_config.mode |= AT91_SMC_DBW_16;
> > +#else
> > + ek_nand_smc_config.mode |= AT91_SMC_DBW_8;
> > +#endif
> > +
>
> You already use IS_ENABLED below, so it might be more consistent to
> use it here as well.
Agreed, much nicer.
> > +static int at91sam9263ek_phy_init(void)
> > +{
> > + /*
> > + * PB27 enables the 50MHz oscillator for Ethernet PHY
> > + * 1 - enable
> > + * 0 - disable
> > + */
> > + at91_set_gpio_output(AT91_PIN_PB27, 1);
> > + gpio_set_value(AT91_PIN_PB27, 1); /* 1- enable, 0 - disable */
> > + return 0;
> > +}
> > +device_initcall(at91sam9263ek_phy_init);
> > +
>
> This is fine as it is, but you can probably drop the code above in
> favor of gpio-hog in DT file.
Did not know of the hog thingy. Done, thanks,
> >
> > +#if defined(CONFIG_COMMON_CLK_AT91)
> > +static void at91sam9263_initialize(void)
> > +{
> > + at91_add_sam9_smc(0, AT91SAM9263_BASE_SMC0, 0x200);
> > + at91_add_sam9_smc(1, AT91SAM9263_BASE_SMC1, 0x200);
> > +}
> > +#else
> > /*
> > * The peripheral clocks.
> > */
> > @@ -248,6 +255,7 @@ static void at91sam9263_initialize(void)
> > at91_add_sam9_smc(0, AT91SAM9263_BASE_SMC0, 0x200);
> > at91_add_sam9_smc(1, AT91SAM9263_BASE_SMC1, 0x200);
> > }
> > +#endif
>
> Is it too much work to move those two SMC-related calls into board
> file and not compile mach-at91/at91sam9263.c for DT enabled build at
> all?
This is more work than what one would think looking at this diff.
And if done right then both at91sam9263.c and at91sam9263_devices.c
should no longer be used.
But...
- The code uses at91_rtt_irq_fixup() which can only be called from mach-at91.
- setup.c has the at91_init_soc thing that must be defined
so looking into solving these in a nice way as a preparation.
Sam
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2017-12-30 21:24 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-27 21:17 [PATCH 0/5] Enable DT support for AT91SAM9263EK Sam Ravnborg
2017-12-27 21:18 ` [PATCH 1/5] at91sam9263ek: enable multi-image build Sam Ravnborg
2017-12-27 21:18 ` [PATCH 2/5] at91sam9263ek: add DT file from Linux kernel v4.14-rc4 Sam Ravnborg
2017-12-30 2:13 ` Andrey Smirnov
2017-12-27 21:18 ` [PATCH 3/5] at91sam9263ek: fix SD card in DT Sam Ravnborg
2017-12-27 21:18 ` [PATCH 4/5] arm: at91: enable CPU specific init with OF Sam Ravnborg
2017-12-27 21:18 ` [PATCH 5/5] at91sam9263ek: enable devicetree Sam Ravnborg
2017-12-30 2:02 ` Andrey Smirnov
2017-12-30 21:24 ` Sam Ravnborg [this message]
2017-12-30 22:58 ` [RFC PATCH 1/2] arm: at91: move irq_fixup to header file Sam Ravnborg
2017-12-30 22:59 ` [RFC PATCH 2/2] arm: at91: simplify soc setup Sam Ravnborg
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171230212427.GA27962@ravnborg.org \
--to=sam@ravnborg.org \
--cc=andrew.smirnov@gmail.com \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox