public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Ard Biesheuvel" <ard.biesheuvel@arm.com>
To: devel@edk2.groups.io
Cc: leif@nuviainc.com, pete@akeo.ie, andrey.warkentin@gmail.com
Subject: Re: [PATCH edk2-platforms 4/5] Platform/RaspberryPi3: query firmware for 16550 input clock at boot
Date: Tue, 5 May 2020 20:11:45 +0200	[thread overview]
Message-ID: <02940c75-5a92-9fca-449a-7a90ccfc8362@arm.com> (raw)
In-Reply-To: <20200505145029.29826-5-ard.biesheuvel@arm.com>

On 5/5/20 4:50 PM, Ard Biesheuvel wrote:
> Query the firmware for the clock rate that is used to drive the
> 16550 baud clock, so that we can program the correct baud rate.
> 
> Co-authored-by: Pete Batard <pete@akeo.ie>
> Co-authored-by: Andrei Warkentin <andrey.warkentin@gmail.com>
> Co-authored-by: Ard Biesheuvel <ard.biesheuvel@arm.com>
> Signed-off-by: Pete Batard <pete@akeo.ie>
> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@arm.com>
> ---
>   Platform/RaspberryPi/Library/PlatformLib/AArch64/RaspberryPiHelper.S | 25 +++++++++++++++++++-
>   1 file changed, 24 insertions(+), 1 deletion(-)
> 
> diff --git a/Platform/RaspberryPi/Library/PlatformLib/AArch64/RaspberryPiHelper.S b/Platform/RaspberryPi/Library/PlatformLib/AArch64/RaspberryPiHelper.S
> index 91dfe1bb981e..35580e4ed73a 100644
> --- a/Platform/RaspberryPi/Library/PlatformLib/AArch64/RaspberryPiHelper.S
> +++ b/Platform/RaspberryPi/Library/PlatformLib/AArch64/RaspberryPiHelper.S
> @@ -3,7 +3,7 @@
>    *  Copyright (c) 2020, Andrei Warkentin <andrey.warkentin@gmail.com>
>    *  Copyright (c) 2019-2020, Pete Batard <pete@akeo.ie>
>    *  Copyright (c) 2016, Linaro Limited. All rights reserved.
> - *  Copyright (c) 2011-2013, ARM Limited. All rights reserved.
> + *  Copyright (c) 2011-2020, ARM Limited. All rights reserved.
>    *
>    *  SPDX-License-Identifier: BSD-2-Clause-Patent
>    *
> @@ -85,6 +85,14 @@ ASM_FUNC (ArmPlatformPeiBootAction)
>       adr     x2, mBoardRevision
>       str     w0, [x2]
>   
> +#if (RPI_MODEL == 3)

As noted by Pete off-list, doing this doesn't work unless we add 
something like

GCC:*_*_*_PP_FLAGS          = -DRPI_MODEL=3

to the [BuildOptions] in RPi3.dsc



> +    run     .Lclkinfo_buffer
> +
> +    ldr     w0, .Lfrequency
> +    adrp    x2, _gPcd_BinaryPatch_PcdSerialClockRate
> +    str     w0, [x2, :lo12:_gPcd_BinaryPatch_PcdSerialClockRate]
> +#endif
> +
>       ret
>   
>       .align  4
> @@ -127,6 +135,21 @@ ASM_FUNC (ArmPlatformPeiBootAction)
>       .long   0                           // end tag
>       .set    .Lrevinfo_size, . - .Lrevinfo_buffer
>   
> +#if (RPI_MODEL == 3)
> +    .align  4
> +.Lclkinfo_buffer:
> +    .long   .Lclkinfo_size
> +    .long   0x0
> +    .long   RPI_MBOX_GET_CLOCK_RATE
> +    .long   8                           // buf size
> +    .long   4                           // input len
> +    .long   4                           // clock id: 0x04 = Core/VPU
> +.Lfrequency:
> +    .long   0                           // frequency
> +    .long   0                           // end tag
> +    .set    .Lclkinfo_size, . - .Lclkinfo_buffer
> +#endif
> +
>   //UINTN
>   //ArmPlatformGetPrimaryCoreMpId (
>   //  VOID
> 


  reply	other threads:[~2020-05-05 18:11 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-05 14:50 [PATCH edk2-platforms 0/5] Platform/RaspberryPi: fix serialportlib dependency hell Ard Biesheuvel
2020-05-05 14:50 ` [PATCH edk2-platforms 1/5] Platform/RaspberryPi/DualSerialPortLib: split up to ease reuse Ard Biesheuvel
2020-05-06 10:18   ` Pete Batard
2020-05-05 14:50 ` [PATCH edk2-platforms 2/5] Platform/RaspberryPi: introduce DebugDualSerialPortLib Ard Biesheuvel
2020-05-06 10:18   ` Pete Batard
2020-05-05 14:50 ` [PATCH edk2-platforms 3/5] Platform/RaspberryPi: fix 16550 divisor calculation logic Ard Biesheuvel
2020-05-05 18:10   ` Ard Biesheuvel
2020-05-06 10:18     ` [edk2-devel] " Pete Batard
2020-05-06 10:25       ` Ard Biesheuvel
2020-05-05 14:50 ` [PATCH edk2-platforms 4/5] Platform/RaspberryPi3: query firmware for 16550 input clock at boot Ard Biesheuvel
2020-05-05 18:11   ` Ard Biesheuvel [this message]
2020-05-06 10:18     ` [edk2-devel] " Pete Batard
2020-05-06 10:31       ` Ard Biesheuvel
2020-05-06 10:38         ` Pete Batard
2020-05-05 14:50 ` [PATCH edk2-platforms 5/5] Platform/RaspberryPi: create DXE phase SerialPortLib version for RPi3 Ard Biesheuvel
2020-05-06 10:19   ` Pete Batard
2020-05-06 16:16 ` [PATCH edk2-platforms 0/5] Platform/RaspberryPi: fix serialportlib dependency hell Ard Biesheuvel

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-list 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=02940c75-5a92-9fca-449a-7a90ccfc8362@arm.com \
    --to=devel@edk2.groups.io \
    /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