From patchwork Mon Apr 27 15:22:25 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bin Meng X-Patchwork-Id: 465083 X-Patchwork-Delegate: sjg@chromium.org Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id F13D1140328 for ; Tue, 28 Apr 2015 01:23:07 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="verification failed; unprotected key" header.d=gmail.com header.i=@gmail.com header.b=Wksa8QI+; dkim-adsp=none (unprotected policy); dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id DA0BC4BB62; Mon, 27 Apr 2015 17:23:02 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7NhbT7hB_9Tk; Mon, 27 Apr 2015 17:23:02 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 896CB4BB65; Mon, 27 Apr 2015 17:22:57 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7989D4BA7F for ; Mon, 27 Apr 2015 17:22:54 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id d6EZ3bGVWd7r for ; Mon, 27 Apr 2015 17:22:54 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-vn0-f43.google.com (mail-vn0-f43.google.com [209.85.216.43]) by theia.denx.de (Postfix) with ESMTPS id 1A1DD4BA77 for ; Mon, 27 Apr 2015 17:22:49 +0200 (CEST) Received: by vnbf62 with SMTP id f62so12290100vnb.3 for ; Mon, 27 Apr 2015 08:22:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:from:to:subject:date:in-reply-to:references:mime-version :content-type; bh=O7va+uishZMq7CUxkr8UqbbkqbffrJKfnYoqIziZCMs=; b=Wksa8QI+FRUThCr2cOwj8wDu+OX+i4hcJXvFc23og7NADtfp1mM6JU7T2MnCWjRJ62 ip7n20Npz1Zl5ZDhnAZcOQriGOhhHCroEtnaiWH3FUnA3Y8uFdMdPDZ2zORD5FlMHXJk 4NWSLHXNrFmc0TtKHUShHadbntdWn5ZbQJAZ8aPs63AhdogLt8YjbPaxoVfGeCkbT8BO OV1gGB698NawKsSmNr9NfYIXU/ZmN87/Ldm/m80KY/2WsS7niIPb9xbWgMaHs9IfC9Hy 5ZcNoUO8BK9bB/ZOSW6aGj68PasjT3SSEWV7kG5qSXKqVlohDuuh9N0HflKcCX2E3a0e hb4g== X-Received: by 10.52.176.37 with SMTP id cf5mr28716609vdc.9.1430148168235; Mon, 27 Apr 2015 08:22:48 -0700 (PDT) Received: from mail.hotmail.com (blu004-wss1s1.hotmail.com. [134.170.2.216]) by mx.google.com with ESMTPSA id di5sm26268470vdc.6.2015.04.27.08.22.47 (version=TLSv1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 27 Apr 2015 08:22:47 -0700 (PDT) Received: from BLU436-SMTP75 ([134.170.2.215]) by BLU004-WSS1S1.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.22751); Mon, 27 Apr 2015 08:22:47 -0700 X-TMN: [6SmfcpGBqVUdb8Ngn2QueSwbrHe1zPkK] Message-ID: From: Bin Meng To: Simon Glass , U-Boot Mailing List Date: Mon, 27 Apr 2015 23:22:25 +0800 X-Mailer: git-send-email 1.8.2.1 In-Reply-To: <1430148148-1138-1-git-send-email-bmeng.cn@gmail.com> References: <1430148148-1138-1-git-send-email-bmeng.cn@gmail.com> X-OriginalArrivalTime: 27 Apr 2015 15:22:45.0959 (UTC) FILETIME=[03536570:01D080FE] MIME-Version: 1.0 Subject: [U-Boot] [PATCH 2/5] x86: Kconfig: Move platform options forward X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Move platform-specific options under in arch/x86/Kconfig forward right after the board-specific options but before any architecture-specific options. When it comes to the same Kconfig option, board-specific one takes take the highest precedence, then platform-specific one, and finally architecture-specific one. Signed-off-by: Bin Meng Acked-by: Simon Glass --- arch/x86/Kconfig | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index c3cc144..43062cd 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -30,6 +30,15 @@ source "board/coreboot/Kconfig" source "board/google/Kconfig" source "board/intel/Kconfig" +# platform-specific options below +source "arch/x86/cpu/baytrail/Kconfig" +source "arch/x86/cpu/coreboot/Kconfig" +source "arch/x86/cpu/ivybridge/Kconfig" +source "arch/x86/cpu/quark/Kconfig" +source "arch/x86/cpu/queensbay/Kconfig" + +# architecture-specific options below + config DM_SPI default y @@ -358,16 +367,6 @@ config FSP_TEMP_RAM_ADDR Stack top address which is used in FspInit after DRAM is ready and CAR is disabled. -source "arch/x86/cpu/baytrail/Kconfig" - -source "arch/x86/cpu/coreboot/Kconfig" - -source "arch/x86/cpu/ivybridge/Kconfig" - -source "arch/x86/cpu/quark/Kconfig" - -source "arch/x86/cpu/queensbay/Kconfig" - config TSC_CALIBRATION_BYPASS bool "Bypass Time-Stamp Counter (TSC) calibration" default n