From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:400e:c00::22f; helo=mail-pf0-x22f.google.com; envelope-from=df7729@gmail.com; receiver=edk2-devel@lists.01.org Received: from mail-pf0-x22f.google.com (mail-pf0-x22f.google.com [IPv6:2607:f8b0:400e:c00::22f]) (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 10C412034C0AA for ; Mon, 23 Oct 2017 16:55:27 -0700 (PDT) Received: by mail-pf0-x22f.google.com with SMTP id b85so18282077pfj.13 for ; Mon, 23 Oct 2017 16:59:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=kT72Uh8TQmhMqau1hHLh6SZasQ7oQYxsLz8voQTWjW4=; b=ZoTJHl74SbWV6PbMk1yv/wePJAXEJuWsppWn4fBxs+t1XVfj+OTik3Nrko7reiFzgj NZeBY0mBNTCJJiib8YwLvlFfG4ddhuDWytlmu86y+QhotSaEMEsZV6AH7j/zIYMe0sJL J6mBbKAsZRYWIJCPkb6BfnpdCkxckJkcTc5324TmCDFucfeBgbg7N/iRBlBsY4S8UNk+ v2nxBKDIL47sNKyOMme+8chGo5wGXfoDwXNGxs0VL2PGcN2vKD+kSPTo1TBeLHUxyS+F YpI8wLoxLNKfPyF1J+02DjHYtnnoiYnsukVexUiedNg8WGPJ4NylkBvPPR9VoyopZLuG bnsg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=kT72Uh8TQmhMqau1hHLh6SZasQ7oQYxsLz8voQTWjW4=; b=eTE/Q4cqOHN5c5ETBLPpVH9GS/n/pMLiCsKOSd0ut44ZaGUX6xw7+p1cg4ha1FVeib zGleC5TpU+93Idk2whsA6oCMXkOeDdUUvaF6NSInyGciXGUzs5/68ToufLbOtpDnEWn2 OlSjfSxcZs4DcsQGA1XEbQYcAllvEmsJk7jUQ7cVRM5PXUZtLNGqpO5nRYPTUQH0cU9Z pcP2qE8dqlc5ALrtM9mvyqm8A8xNc2vX5pxgLiyu6Bx6Fheh1COgrt48dxqX9i5AK+s6 NhellB+XVOfEsP93LyIg26lsFADuRMOHAdiRkAuK3QA0Bpmtt7cCjD/2QBOlnz10TBNv TjZQ== X-Gm-Message-State: AMCzsaXlSn5Hux19Ltx9MtbG4A7NSZ8Qb+HQyX9E/wOgr+ZrAMK2kxuY ppDSaupXB9R3/WvGdQq/SBdgj7UB7u/f2+kB+60= X-Google-Smtp-Source: ABhQp+TJXqOpRfGFYFlU8jI/hsVBxw3oSdHBaWpOFWOIvxb95Tb1c1loqwEHXjKtjFzsh8btjHwx7+ge1IEqszejnCw= X-Received: by 10.98.147.197 with SMTP id r66mr14851055pfk.20.1508803150825; Mon, 23 Oct 2017 16:59:10 -0700 (PDT) MIME-Version: 1.0 Received: by 10.100.162.204 with HTTP; Mon, 23 Oct 2017 16:59:10 -0700 (PDT) In-Reply-To: References: From: "David F." Date: Mon, 23 Oct 2017 16:59:10 -0700 Message-ID: To: edk2 developers list Subject: timer ticks ? 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: Mon, 23 Oct 2017 23:55:28 -0000 Content-Type: text/plain; charset="UTF-8" Hi, Is there a reliable (always available) way to get a timer tick in an application similar to the old 18.2 per second timer tick from BIOS. That one was always there, high speed access (no slow access to a RTC) and the tick count is known (to approx calculate intervals for polling and other things). In UEFI, EVT_TIMER may not be supported. GetTime may be slow RTC access. It can be a counter only since machine was on. TIA!