From: david@lechnology.com (David Lechner)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v1 1/6] ARM: davinci: clean up map_io functions
Date: Thu, 7 Dec 2017 11:14:20 -0600 [thread overview]
Message-ID: <2e3b9ef7-b9ee-a6b7-bc67-e3dbd6119f48@lechnology.com> (raw)
In-Reply-To: <2e0a60bb-08be-5d0c-3c4c-c9e075c9170a@ti.com>
On 12/07/2017 08:52 AM, Sekhar Nori wrote:
> On Saturday 02 December 2017 08:04 AM, David Lechner wrote:
>> This cleans up the map_io functions in the board init files for
>> mach-davinci.
>>
>> Most of the boards had a wrapper function around <board>_init(). This
>> wrapper is removed and the function is used directly. Additionally, the
>> <board>_init() functions are renamed to <board>_map_io() to match the
>> field name.
>>
>> Signed-off-by: David Lechner <david@lechnology.com>
>
>> diff --git a/arch/arm/mach-davinci/board-dm646x-evm.c b/arch/arm/mach-davinci/board-dm646x-evm.c
>> index cb0a41e..f0e2762 100644
>> --- a/arch/arm/mach-davinci/board-dm646x-evm.c
>> +++ b/arch/arm/mach-davinci/board-dm646x-evm.c
>> @@ -716,16 +716,6 @@ static void __init evm_init_i2c(void)
>> }
>> #endif
>>
>> -#define DM6467T_EVM_REF_FREQ 33000000
>> -
>> -static void __init davinci_map_io(void)
>> -{
>> - dm646x_init();
>
> The call to dm646x_init() is dropped here, but I don't see it added
> back, at least in this patch.
dm646x_init() is renamed to dm646x_map_io(), which is used directly in
MACHINE_START().
>
>> diff --git a/arch/arm/mach-davinci/dm646x.c b/arch/arm/mach-davinci/dm646x.c
>> index da21353..b3be5c8 100644
>> --- a/arch/arm/mach-davinci/dm646x.c
>> +++ b/arch/arm/mach-davinci/dm646x.c
>> @@ -17,6 +17,7 @@
>> #include <linux/platform_data/edma.h>
>> #include <linux/platform_data/gpio-davinci.h>
>>
>> +#include <asm/mach-types.h>
>> #include <asm/mach/map.h>
>>
>> #include <mach/cputype.h>
>> @@ -952,11 +953,16 @@ int __init dm646x_init_edma(struct edma_rsv_info *rsv)
>> return IS_ERR(edma_pdev) ? PTR_ERR(edma_pdev) : 0;
>> }
>>
>> -void __init dm646x_init(void)
>> +#define DM6467T_EVM_REF_FREQ 33000000
>> +
>> +void __init dm646x_map_io(void)
>> {
>> davinci_common_init(&davinci_soc_info_dm646x);
>> davinci_map_sysmod();
>> davinci_clk_init(davinci_soc_info_dm646x.cpu_clks);
>> +
>> + if (machine_is_davinci_dm6467tevm())
>> + davinci_set_refclk_rate(DM6467T_EVM_REF_FREQ);
>> }
>
> I think we should leave the DM646x case out of this since there are
> additional issues like introducing these EVM specific defines in a file
> meant for SoC.
I agree with the sentiment. This quirk gets moved around several times
in this series just to keep things working for a git bisect even if it
is not the ideal place for it to be.
Currently, all boards use a common reference frequency from the common
SoC files instead of the board file. I have not done so in this version
of the series, but I could rework it so that this happens, which would
remove the need for this quirk altogether. But even then, it would
probably get shuffled around a bit before being eliminated.
>
> Is this clean-up a must for you to implement rest of the series (haven't
> looked at other patches yet).
Technically, no it is not required. But I must say that it has been a
good help to me to keep things straight in my head.
next prev parent reply other threads:[~2017-12-07 17:14 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-02 2:34 [PATCH v1 0/6] ARM: davinci: convert to common clock framework David Lechner
2017-12-02 2:34 ` [PATCH v1 1/6] ARM: davinci: clean up map_io functions David Lechner
2017-12-07 14:52 ` Sekhar Nori
2017-12-07 17:14 ` David Lechner [this message]
2017-12-08 15:34 ` Sekhar Nori
2017-12-08 19:14 ` David Lechner
2017-12-08 15:38 ` Sekhar Nori
2017-12-08 19:11 ` David Lechner
2017-12-02 2:34 ` [PATCH v1 2/6] ARM: davinci: move davinci_clk_init() to init_time David Lechner
2017-12-02 2:34 ` [PATCH v1 3/6] ARM: davinci: don't use static clk_lookup David Lechner
2017-12-02 2:34 ` [PATCH v1 4/6] ARM: davinci: make davinci_clk_reset() static David Lechner
2017-12-02 2:34 ` [PATCH v1 5/6] ARM: davinci: convert to common clock framework David Lechner
2017-12-02 2:34 ` [PATCH v1 6/6] ARM: davinci: remove clock debugfs David Lechner
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=2e3b9ef7-b9ee-a6b7-bc67-e3dbd6119f48@lechnology.com \
--to=david@lechnology.com \
--cc=linux-arm-kernel@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;
as well as URLs for NNTP newsgroup(s).