From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2a00:1450:400c:c09::241; helo=mail-wm0-x241.google.com; envelope-from=leif.lindholm@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wm0-x241.google.com (mail-wm0-x241.google.com [IPv6:2a00:1450:400c:c09::241]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id D1D132035A7D2 for ; Thu, 16 Nov 2017 10:37:01 -0800 (PST) Received: by mail-wm0-x241.google.com with SMTP id l8so2074705wmg.4 for ; Thu, 16 Nov 2017 10:41:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=oKePvztorIk3JhwzB5FJqX6EW0K/UVfizjzIo3/thNI=; b=H7TYljt9as/qcJkLNewOZLHrfGMfEBK0fJuE6f2tcI4aOtwOsFzeyyQs1Yn+NJbyf+ cKzHSGRO1qc6Jgfb+ijsStMxbR0wROuM7EcYNy4TTrbvIRd65Ph8gFdHrk72Gpm9VtNE HP/wK49LVPhv9w2Pj0Y4F3ijEHSaMgeaCFDaE= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=oKePvztorIk3JhwzB5FJqX6EW0K/UVfizjzIo3/thNI=; b=ii0jUqrOFgjCQc0naJ8+tj7EK62ZG4OZBGycKhY1H0l+qnpqEnTP6XX+JTZQRVJbS5 YzDC2XoY9Mym2U9AnUizwa7QboEzAQ8nugVqOmj+nCMOxc+/9pCA9WMzN2YMXSUHbkwh t+zs5a31COLsAtFVYI+j0G0Ats7ljzAv1xruYHEzWZ0V7V9/oxf5w7Cscro5fnvRc7Vn He0uUQEXG0zE5xr12kP/c1GfQcgbWamwofW1FMX3kxaTPkmWnbwTuBhrXqaD+v9EIO22 GjZnxEU6DRnUC56z1bFtwdCmd7T5MyMQdbLnN28uhXl44zpYUlR5vHPq90r7i600bdqr tFlg== X-Gm-Message-State: AJaThX51PhjXJimEyAKVT19PJvAf1l303NXdl2gsyHXbyCd/dpNg7znu efm6jx+HMFMQhVTVm6ZbepU6rw== X-Google-Smtp-Source: AGs4zMaKDpCbpy0I1LwsXEfCYHYrlr5YYxKMUKbdCaWsU0MUCg6bEJ/UwhGV5lHwG95XmeOFatS2Og== X-Received: by 10.28.225.197 with SMTP id y188mr2419141wmg.12.1510857669781; Thu, 16 Nov 2017 10:41:09 -0800 (PST) Received: from bivouac.eciton.net (bivouac.eciton.net. [2a00:1098:0:86:1000:23:0:2]) by smtp.gmail.com with ESMTPSA id t43sm2524630wrc.74.2017.11.16.10.41.08 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 16 Nov 2017 10:41:08 -0800 (PST) Date: Thu, 16 Nov 2017 18:41:07 +0000 From: Leif Lindholm To: Ard Biesheuvel Cc: edk2-devel@lists.01.org, lersek@redhat.com Message-ID: <20171116184107.vvqi6iwl4sq7tm3v@bivouac.eciton.net> References: <20171116174708.24964-1-ard.biesheuvel@linaro.org> MIME-Version: 1.0 In-Reply-To: <20171116174708.24964-1-ard.biesheuvel@linaro.org> User-Agent: NeoMutt/20170113 (1.7.2) Subject: Re: [PATCH v2 0/2] ArmplatformPkg: clean up PL011 support library X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Nov 2017 18:37:02 -0000 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Nov 16, 2017 at 05:47:06PM +0000, Ard Biesheuvel wrote: > Clean up the PL011 UART support library, by moving it into the appropriate > place for libraries, and splitting the header file into an implementation > and an interface part. For the series: Reviewed-by: Leif Lindholm > Ard Biesheuvel (2): > ArmPlatformPkg: reorganize PL011 code > ArmVirtPkg: switch to new PL011UartLib implementation > > ArmPlatformPkg/ArmPlatformPkg.dec | 3 + > ArmPlatformPkg/Include/Library/PL011UartLib.h | 187 ++++++++ > ArmPlatformPkg/Library/PL011SerialPortLib/PL011SerialPortLib.c | 5 +- > ArmPlatformPkg/Library/PL011UartLib/PL011Uart.h | 120 +++++ > ArmPlatformPkg/Library/PL011UartLib/PL011UartLib.c | 474 ++++++++++++++++++++ > ArmPlatformPkg/Library/PL011UartLib/PL011UartLib.inf | 43 ++ > ArmVirtPkg/ArmVirt.dsc.inc | 2 +- > ArmVirtPkg/Library/FdtPL011SerialPortLib/EarlyFdtPL011SerialPortLib.c | 5 +- > ArmVirtPkg/Library/FdtPL011SerialPortLib/FdtPL011SerialPortLib.c | 5 +- > 9 files changed, 834 insertions(+), 10 deletions(-) > create mode 100644 ArmPlatformPkg/Include/Library/PL011UartLib.h > create mode 100644 ArmPlatformPkg/Library/PL011UartLib/PL011Uart.h > create mode 100644 ArmPlatformPkg/Library/PL011UartLib/PL011UartLib.c > create mode 100644 ArmPlatformPkg/Library/PL011UartLib/PL011UartLib.inf > > -- > 2.11.0 >