From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B75B0C00140 for ; Thu, 18 Aug 2022 08:10:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236033AbiHRIKP (ORCPT ); Thu, 18 Aug 2022 04:10:15 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45094 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233455AbiHRIKM (ORCPT ); Thu, 18 Aug 2022 04:10:12 -0400 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2FA1182864 for ; Thu, 18 Aug 2022 01:10:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1660810211; x=1692346211; h=date:from:to:cc:subject:message-id:mime-version; bh=UYCEeNzGzCw/D2zg9WoiBkJE/KYCqvcExvYG19ZIXSc=; b=OVgODjheLdD7+f3zipdJgHKIpdw4Bv8E1KP5Yta2MF/TAfxBL685Qr4e MYcWY0OPjFptINBsk/Qg29yjNN9lOg+HoOjRAR5c3qbfnlvuqS4rWZ0SS Hs/9on2poCRV6Jy0haRw4vq4UpZ8QPliAgmkDxk1e+jeqwNbLJBsn7+Py G7cmGsjwFpUIAwrKA3a8iNdKFTiGz6hs37gjGAu/5iFFendFVII4NGaWa vtaRc9q/9ci1wymxCZO7yEmqrwH3yHqAk8SW5rdIOnuVJ+kQw8jWgn6G0 m4T22FcdYo7K0j671vMRyGkuCDeMDroTTyTHaBdaz83x/o7mOBy5qmWD3 Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10442"; a="290263462" X-IronPort-AV: E=Sophos;i="5.93,245,1654585200"; d="scan'208";a="290263462" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Aug 2022 01:09:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,245,1654585200"; d="scan'208";a="935711314" Received: from lkp-server01.sh.intel.com (HELO 6cc724e23301) ([10.239.97.150]) by fmsmga005.fm.intel.com with ESMTP; 18 Aug 2022 01:09:35 -0700 Received: from kbuild by 6cc724e23301 with local (Exim 4.96) (envelope-from ) id 1oOaat-0000Eb-0a; Thu, 18 Aug 2022 08:09:35 +0000 Date: Thu, 18 Aug 2022 16:08:45 +0800 From: kernel test robot To: Hector Martin Cc: kbuild-all@lists.01.org, linux-kernel@vger.kernel.org Subject: [asahilinux:bits/130-cpufreq 3/4] drivers/cpufreq/apple-soc-cpufreq.c:67:19: error: implicit declaration of function 'readq_relaxed'; did you mean 'readl_relaxed'? Message-ID: <202208181649.iKMgImPW-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org tree: https://github.com/AsahiLinux/linux bits/130-cpufreq head: 15652b46c23d23d9cddae0f85071af0cd492436d commit: 42927fc2e2bc9096a31f4a7c5ef7073765ecde43 [3/4] cpufreq: apple-soc: Add new driver to control Apple SoC CPU P-states config: arm-allyesconfig (https://download.01.org/0day-ci/archive/20220818/202208181649.iKMgImPW-lkp@intel.com/config) compiler: arm-linux-gnueabi-gcc (GCC) 12.1.0 reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # https://github.com/AsahiLinux/linux/commit/42927fc2e2bc9096a31f4a7c5ef7073765ecde43 git remote add asahilinux https://github.com/AsahiLinux/linux git fetch --no-tags asahilinux bits/130-cpufreq git checkout 42927fc2e2bc9096a31f4a7c5ef7073765ecde43 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=arm SHELL=/bin/bash drivers/ If you fix the issue, kindly add following tag where applicable Reported-by: kernel test robot All errors (new ones prefixed by >>): drivers/cpufreq/apple-soc-cpufreq.c: In function 'apple_soc_cpufreq_get_rate': >> drivers/cpufreq/apple-soc-cpufreq.c:67:19: error: implicit declaration of function 'readq_relaxed'; did you mean 'readl_relaxed'? [-Werror=implicit-function-declaration] 67 | u64 reg = readq_relaxed(priv->reg_base + APPLE_DVFS_STATUS); | ^~~~~~~~~~~~~ | readl_relaxed In file included from drivers/cpufreq/apple-soc-cpufreq.c:18: drivers/cpufreq/apple-soc-cpufreq.c: In function 'apple_soc_cpufreq_set_target': >> include/linux/iopoll.h:165:35: error: implicit declaration of function 'readq'; did you mean 'readl'? [-Werror=implicit-function-declaration] 165 | readx_poll_timeout_atomic(readq, addr, val, cond, delay_us, timeout_us) | ^~~~~ include/linux/iopoll.h:88:25: note: in definition of macro 'read_poll_timeout_atomic' 88 | (val) = op(args); \ | ^~ include/linux/iopoll.h:165:9: note: in expansion of macro 'readx_poll_timeout_atomic' 165 | readx_poll_timeout_atomic(readq, addr, val, cond, delay_us, timeout_us) | ^~~~~~~~~~~~~~~~~~~~~~~~~ drivers/cpufreq/apple-soc-cpufreq.c:87:13: note: in expansion of macro 'readq_poll_timeout_atomic' 87 | if (readq_poll_timeout_atomic(priv->reg_base + APPLE_DVFS_CMD, reg, | ^~~~~~~~~~~~~~~~~~~~~~~~~ >> drivers/cpufreq/apple-soc-cpufreq.c:98:9: error: implicit declaration of function 'writeq_relaxed'; did you mean 'writeb_relaxed'? [-Werror=implicit-function-declaration] 98 | writeq_relaxed(reg, priv->reg_base + APPLE_DVFS_CMD); | ^~~~~~~~~~~~~~ | writeb_relaxed drivers/cpufreq/apple-soc-cpufreq.c: At top level: drivers/cpufreq/apple-soc-cpufreq.c:291:27: warning: initialized field overwritten [-Woverride-init] 291 | .attr = apple_soc_cpufreq_hw_attr, | ^~~~~~~~~~~~~~~~~~~~~~~~~ drivers/cpufreq/apple-soc-cpufreq.c:291:27: note: (near initialization for 'apple_soc_cpufreq_driver.attr') cc1: some warnings being treated as errors vim +67 drivers/cpufreq/apple-soc-cpufreq.c 62 63 static unsigned int apple_soc_cpufreq_get_rate(unsigned int cpu) 64 { 65 struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu); 66 struct apple_cpu_priv *priv = policy->driver_data; > 67 u64 reg = readq_relaxed(priv->reg_base + APPLE_DVFS_STATUS); 68 unsigned int pstate = FIELD_GET(APPLE_DVFS_STATUS_CUR_PS, reg); 69 unsigned int i; 70 71 for (i = 0; policy->freq_table[i].frequency != CPUFREQ_TABLE_END; i++) 72 if (policy->freq_table[i].driver_data == pstate) 73 return policy->freq_table[i].frequency; 74 75 dev_err(priv->cpu_dev, "could not find frequency for pstate %d\n", 76 pstate); 77 return 0; 78 } 79 80 static int apple_soc_cpufreq_set_target(struct cpufreq_policy *policy, 81 unsigned int index) 82 { 83 struct apple_cpu_priv *priv = policy->driver_data; 84 unsigned int pstate = policy->freq_table[index].driver_data; 85 u64 reg; 86 87 if (readq_poll_timeout_atomic(priv->reg_base + APPLE_DVFS_CMD, reg, 88 !(reg & APPLE_DVFS_CMD_BUSY), 2, 89 APPLE_DVFS_TRANSITION_TIMEOUT)) { 90 return -EIO; 91 } 92 93 reg &= ~(APPLE_DVFS_CMD_PS1 | APPLE_DVFS_CMD_PS2); 94 reg |= FIELD_PREP(APPLE_DVFS_CMD_PS1, pstate); 95 reg |= FIELD_PREP(APPLE_DVFS_CMD_PS2, pstate); 96 reg |= APPLE_DVFS_CMD_SET; 97 > 98 writeq_relaxed(reg, priv->reg_base + APPLE_DVFS_CMD); 99 100 return 0; 101 } 102 -- 0-DAY CI Kernel Test Service https://01.org/lkp