From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail05.groups.io (mail05.groups.io [45.79.224.7]) by spool.mail.gandi.net (Postfix) with ESMTPS id 7092C74003A for ; Tue, 30 Jul 2024 15:08:28 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=PonkIOfgAXCfTDXPMDL8eTdtoCSmH4MC0KbNXHM4ZQc=; c=relaxed/simple; d=groups.io; h=Date:In-Reply-To:Mime-Version:References:Message-ID:Subject:From:To:Cc:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Resent-Date:Resent-From:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Type; s=20240206; t=1722352108; v=1; b=GGBZDlYUG9K45iCuETAftiUzgT0v+Z7tcyHYrLTb1j4Tf0bNjPyYZ3UigE84Ut6CJNI1/2kp EMtxGHrtd5F/Uc+dC3KfizsDDIiWCcJYU7miLvYPylEvGgj+VquKCTFngk7uNRp4LsxtzYpf3wu Jh1j5jSnk9crkdbFM7MACyO6g3IzG4SeWZCv6EHVrvdaj3DGsFMo1Wr/gmMxxuKeQ9x4/CYfNI9 BO+RfTVMJyqDLy8uY2QLL2eVCE5jKrkZ68djmO3trglMVyI5D/xsUkkq3TqI+SnqjSrpQRchZHM QPIIKFD7DppfWbrD0Rh4BuaygiWv2irbxuPL+a5Bl3m3g== X-Received: by 127.0.0.2 with SMTP id na5pYY7687511x0go6Mc0R2Y; Tue, 30 Jul 2024 08:08:27 -0700 X-Received: from mail-yb1-f202.google.com (mail-yb1-f202.google.com [209.85.219.202]) by mx.groups.io with SMTP id smtpd.web11.54962.1722255748190833372 for ; Mon, 29 Jul 2024 05:22:28 -0700 X-Received: by mail-yb1-f202.google.com with SMTP id 3f1490d57ef6-e035f7b5976so6187465276.0 for ; Mon, 29 Jul 2024 05:22:28 -0700 (PDT) X-Gm-Message-State: Wo3wDJ4xFt1M3kh3tOhs2t4hx7686176AA= X-Google-Smtp-Source: AGHT+IH4xBdd9osHAEm+k2A8NFSLg2I3y4okDj8H6BI4UZfD5cl8JMzrkVgiNErzmGRaXjYW4K3XjGY1 X-Received: from palermo.c.googlers.com ([fda3:e722:ac3:cc00:28:9cb1:c0a8:118a]) (user=ardb job=sendgmr) by 2002:a05:6902:c0a:b0:e05:a890:5aaa with SMTP id 3f1490d57ef6-e0b555474d7mr193928276.1.1722255747137; Mon, 29 Jul 2024 05:22:27 -0700 (PDT) Date: Mon, 29 Jul 2024 14:22:11 +0200 In-Reply-To: <20240729122215.400402-1-ardb+git@google.com> Mime-Version: 1.0 References: <20240729122215.400402-1-ardb+git@google.com> Message-ID: <20240729122215.400402-2-ardb+git@google.com> Subject: [edk2-devel] [PATCH RFC edk2-platforms 1/5] Platform AARCH64: Drop leftover references to deleted timer PCD From: "Ard Biesheuvel via groups.io" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm , Rebecca Cran , Nhi Pham , Chuong Tran , Wenyi Xie , Peng Xie , Ling Jia , Yiqi Shu Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Resent-Date: Tue, 30 Jul 2024 08:08:18 -0700 Resent-From: ardb+git@google.com Reply-To: devel@edk2.groups.io,ardb+git@google.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: Content-Type: text/plain; charset="UTF-8" X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240206 header.b=GGBZDlYU; dmarc=pass (policy=none) header.from=groups.io; spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 45.79.224.7 as permitted sender) smtp.mailfrom=bounce@groups.io From: Ard Biesheuvel gArmTokenSpaceGuid.PcdArmArchTimerFreqInHz was made obsolete as AArch64 firmware runs in the non-secure world while programming the timer frequency must be done from the secure world. Drop some remaining references to the PCD. Signed-off-by: Ard Biesheuvel --- Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc | 1 - Platform/Hisilicon/D05/D05.dsc | 7 ------- 2 files changed, 8 deletions(-) diff --git a/Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc b/Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc index 362b25373490..78cfc0a8089f 100644 --- a/Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc +++ b/Silicon/Marvell/Armada7k8k/Armada7k8k.dsc.inc @@ -282,7 +282,6 @@ [PcdsFixedAtBuild.common] gArmTokenSpaceGuid.PcdGicInterruptInterfaceBase|0xF022F000 # ARM Architectural Timer Support - gArmTokenSpaceGuid.PcdArmArchTimerFreqInHz|25000000 gEmbeddedTokenSpaceGuid.PcdMetronomeTickPeriod|1000 # ARM SBSA Watchdog diff --git a/Platform/Hisilicon/D05/D05.dsc b/Platform/Hisilicon/D05/D05.dsc index d247e67e92fc..0231f3188321 100644 --- a/Platform/Hisilicon/D05/D05.dsc +++ b/Platform/Hisilicon/D05/D05.dsc @@ -197,13 +197,6 @@ [PcdsFixedAtBuild.common] gArmTokenSpaceGuid.PcdGicRedistributorsBase|0x4D100000 gArmTokenSpaceGuid.PcdGicInterruptInterfaceBase|0xFE000000 - - # - # ARM Architectual Timer Frequency - # - gArmTokenSpaceGuid.PcdArmArchTimerFreqInHz|50000000 - - gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0x21, 0xaa, 0x2c, 0x46, 0x14, 0x76, 0x03, 0x45, 0x83, 0x6e, 0x8a, 0xb6, 0xf4, 0x66, 0x23, 0x31 } -- 2.46.0.rc1.232.g9752f9e123-goog -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#120110): https://edk2.groups.io/g/devel/message/120110 Mute This Topic: https://groups.io/mt/107628984/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-