From: Gabriel Fernandez <gabriel.fernandez@st.com>
To: Lee Jones <lee.jones@linaro.org>
Cc: Rob Herring <robh+dt@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Russell King <linux@armlinux.org.uk>,
Maxime Coquelin <mcoquelin.stm32@gmail.com>,
Alexandre Torgue <alexandre.torgue@st.com>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@codeaurora.org>,
Nicolas Pitre <nico@linaro.org>, Arnd Bergmann <arnd@arndb.de>,
<daniel.thompson@linaro.org>, <andrea.merello@gmail.com>,
<radoslaw.pietrzyk@gmail.com>, <devicetree@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>, <linux-clk@vger.kernel.org>,
<ludovic.barre@st.com>, <olivier.bideau@st.com>,
<amelie.delaunay@st.com>
Subject: Re: [Resend PATCH v2 2/3] dt-bindings: mfd: stm32f4: Add missing binding definition
Date: Wed, 1 Feb 2017 14:34:49 +0100 [thread overview]
Message-ID: <0bc19dc6-61fd-bb17-67ef-eb0f859f2d3b@st.com> (raw)
In-Reply-To: <20170201133150.ifyxibbiokmcth7i@dell>
Hi Lee,
On 02/01/2017 02:31 PM, Lee Jones wrote:
> On Wed, 01 Feb 2017, gabriel.fernandez@st.com wrote:
>
>> From: Gabriel Fernandez <gabriel.fernandez@st.com>
>>
>> This patch adds missing binding definition (backupram, ethernet, otg,
>> qspi, adc & dsi)
> What is RCC?
Reset & Clock Control
>
>> Signed-off-by: Gabriel Fernandez <gabriel.fernandez@st.com>
>> ---
>> include/dt-bindings/mfd/stm32f4-rcc.h | 14 ++++++++++++--
>> 1 file changed, 12 insertions(+), 2 deletions(-)
>>
>> diff --git a/include/dt-bindings/mfd/stm32f4-rcc.h b/include/dt-bindings/mfd/stm32f4-rcc.h
>> index f662b19..082a81c 100644
>> --- a/include/dt-bindings/mfd/stm32f4-rcc.h
>> +++ b/include/dt-bindings/mfd/stm32f4-rcc.h
>> @@ -18,11 +18,17 @@
>> #define STM32F4_RCC_AHB1_GPIOJ 9
>> #define STM32F4_RCC_AHB1_GPIOK 10
>> #define STM32F4_RCC_AHB1_CRC 12
>> +#define STM32F4_RCC_AHB1_BKPSRAM 18
>> +#define STM32F4_RCC_AHB1_CCMDATARAM 20
>> #define STM32F4_RCC_AHB1_DMA1 21
>> #define STM32F4_RCC_AHB1_DMA2 22
>> #define STM32F4_RCC_AHB1_DMA2D 23
>> #define STM32F4_RCC_AHB1_ETHMAC 25
>> -#define STM32F4_RCC_AHB1_OTGHS 29
>> +#define STM32F4_RCC_AHB1_ETHMACTX 26
>> +#define STM32F4_RCC_AHB1_ETHMACRX 27
>> +#define STM32F4_RCC_AHB1_ETHMACPTP 28
>> +#define STM32F4_RCC_AHB1_OTGHS 29
>> +#define STM32F4_RCC_AHB1_OTGHSULPI 30
>>
>> #define STM32F4_AHB1_RESET(bit) (STM32F4_RCC_AHB1_##bit + (0x10 * 8))
>> #define STM32F4_AHB1_CLOCK(bit) (STM32F4_RCC_AHB1_##bit)
>> @@ -40,6 +46,7 @@
>>
>> /* AHB3 */
>> #define STM32F4_RCC_AHB3_FMC 0
>> +#define STM32F4_RCC_AHB3_QSPI 1
>>
>> #define STM32F4_AHB3_RESET(bit) (STM32F4_RCC_AHB3_##bit + (0x18 * 8))
>> #define STM32F4_AHB3_CLOCK(bit) (STM32F4_RCC_AHB3_##bit + 0x40)
>> @@ -79,7 +86,9 @@
>> #define STM32F4_RCC_APB2_TIM8 1
>> #define STM32F4_RCC_APB2_USART1 4
>> #define STM32F4_RCC_APB2_USART6 5
>> -#define STM32F4_RCC_APB2_ADC 8
>> +#define STM32F4_RCC_APB2_ADC1 8
>> +#define STM32F4_RCC_APB2_ADC2 9
>> +#define STM32F4_RCC_APB2_ADC3 10
>> #define STM32F4_RCC_APB2_SDIO 11
>> #define STM32F4_RCC_APB2_SPI1 12
>> #define STM32F4_RCC_APB2_SPI4 13
>> @@ -91,6 +100,7 @@
>> #define STM32F4_RCC_APB2_SPI6 21
>> #define STM32F4_RCC_APB2_SAI1 22
>> #define STM32F4_RCC_APB2_LTDC 26
>> +#define STM32F4_RCC_APB2_DSI 27
>>
>> #define STM32F4_APB2_RESET(bit) (STM32F4_RCC_APB2_##bit + (0x24 * 8))
>> #define STM32F4_APB2_CLOCK(bit) (STM32F4_RCC_APB2_##bit + 0xA0)
next prev parent reply other threads:[~2017-02-01 13:34 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-01 13:09 [Resend PATCH v2 0/3] STM32F4 Clock binding fix & update gabriel.fernandez
2017-02-01 13:09 ` [Resend PATCH v2 1/3] dt-bindings: mfd: stm32f4: Fix STM32F4_X_CLOCK() macro gabriel.fernandez
2017-02-01 14:35 ` Lee Jones
2017-02-01 13:09 ` [Resend PATCH v2 2/3] dt-bindings: mfd: stm32f4: Add missing binding definition gabriel.fernandez
2017-02-01 13:31 ` Lee Jones
2017-02-01 13:34 ` Gabriel Fernandez [this message]
2017-02-01 14:34 ` Lee Jones
2017-02-01 13:09 ` [Resend PATCH v2 3/3] ARM: dts: stm32: Use clock DT binding definition on stm32f429 family gabriel.fernandez
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=0bc19dc6-61fd-bb17-67ef-eb0f859f2d3b@st.com \
--to=gabriel.fernandez@st.com \
--cc=alexandre.torgue@st.com \
--cc=amelie.delaunay@st.com \
--cc=andrea.merello@gmail.com \
--cc=arnd@arndb.de \
--cc=daniel.thompson@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=lee.jones@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=ludovic.barre@st.com \
--cc=mark.rutland@arm.com \
--cc=mcoquelin.stm32@gmail.com \
--cc=mturquette@baylibre.com \
--cc=nico@linaro.org \
--cc=olivier.bideau@st.com \
--cc=radoslaw.pietrzyk@gmail.com \
--cc=robh+dt@kernel.org \
--cc=sboyd@codeaurora.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