From: kernel test robot <lkp@intel.com>
To: Sameer Pujar <spujar@nvidia.com>,
krzysztof.kozlowski@canonical.com, thierry.reding@gmail.com
Cc: kbuild-all@lists.01.org, jonathanh@nvidia.com,
linux-kernel@vger.kernel.org, linux-tegra@vger.kernel.org,
Sameer Pujar <spujar@nvidia.com>
Subject: Re: [PATCH] memory: tegra: Add APE memory clients for Tegra234
Date: Mon, 21 Feb 2022 23:41:24 +0800 [thread overview]
Message-ID: <202202212350.xbGhqWuI-lkp@intel.com> (raw)
In-Reply-To: <1645186589-25118-1-git-send-email-spujar@nvidia.com>
Hi Sameer,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on tegra/for-next]
[also build test ERROR on next-20220217]
[cannot apply to v5.17-rc5]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Sameer-Pujar/memory-tegra-Add-APE-memory-clients-for-Tegra234/20220220-190451
base: https://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git for-next
config: arm64-randconfig-c004-20220220 (https://download.01.org/0day-ci/archive/20220221/202202212350.xbGhqWuI-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 11.2.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/0day-ci/linux/commit/2432353686ce99492ca9a6100ba6b121fa858950
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Sameer-Pujar/memory-tegra-Add-APE-memory-clients-for-Tegra234/20220220-190451
git checkout 2432353686ce99492ca9a6100ba6b121fa858950
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.2.0 make.cross O=build_dir ARCH=arm64 SHELL=/bin/bash
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
>> drivers/memory/tegra/tegra234.c:74:23: error: 'TEGRA234_MEMORY_CLIENT_APEDMAR' undeclared here (not in a function); did you mean 'TEGRA234_MEMORY_CLIENT_BPMPDMAR'?
74 | .id = TEGRA234_MEMORY_CLIENT_APEDMAR,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| TEGRA234_MEMORY_CLIENT_BPMPDMAR
>> drivers/memory/tegra/tegra234.c:76:24: error: 'TEGRA234_SID_APE' undeclared here (not in a function); did you mean 'TEGRA234_SID_BPMP'?
76 | .sid = TEGRA234_SID_APE,
| ^~~~~~~~~~~~~~~~
| TEGRA234_SID_BPMP
>> drivers/memory/tegra/tegra234.c:84:23: error: 'TEGRA234_MEMORY_CLIENT_APEDMAW' undeclared here (not in a function); did you mean 'TEGRA234_MEMORY_CLIENT_BPMPDMAW'?
84 | .id = TEGRA234_MEMORY_CLIENT_APEDMAW,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| TEGRA234_MEMORY_CLIENT_BPMPDMAW
vim +74 drivers/memory/tegra/tegra234.c
11
12 static const struct tegra_mc_client tegra234_mc_clients[] = {
13 {
14 .id = TEGRA234_MEMORY_CLIENT_SDMMCRAB,
15 .name = "sdmmcrab",
16 .sid = TEGRA234_SID_SDMMC4,
17 .regs = {
18 .sid = {
19 .override = 0x318,
20 .security = 0x31c,
21 },
22 },
23 }, {
24 .id = TEGRA234_MEMORY_CLIENT_SDMMCWAB,
25 .name = "sdmmcwab",
26 .sid = TEGRA234_SID_SDMMC4,
27 .regs = {
28 .sid = {
29 .override = 0x338,
30 .security = 0x33c,
31 },
32 },
33 }, {
34 .id = TEGRA234_MEMORY_CLIENT_BPMPR,
35 .name = "bpmpr",
36 .sid = TEGRA234_SID_BPMP,
37 .regs = {
38 .sid = {
39 .override = 0x498,
40 .security = 0x49c,
41 },
42 },
43 }, {
44 .id = TEGRA234_MEMORY_CLIENT_BPMPW,
45 .name = "bpmpw",
46 .sid = TEGRA234_SID_BPMP,
47 .regs = {
48 .sid = {
49 .override = 0x4a0,
50 .security = 0x4a4,
51 },
52 },
53 }, {
54 .id = TEGRA234_MEMORY_CLIENT_BPMPDMAR,
55 .name = "bpmpdmar",
56 .sid = TEGRA234_SID_BPMP,
57 .regs = {
58 .sid = {
59 .override = 0x4a8,
60 .security = 0x4ac,
61 },
62 },
63 }, {
64 .id = TEGRA234_MEMORY_CLIENT_BPMPDMAW,
65 .name = "bpmpdmaw",
66 .sid = TEGRA234_SID_BPMP,
67 .regs = {
68 .sid = {
69 .override = 0x4b0,
70 .security = 0x4b4,
71 },
72 },
73 }, {
> 74 .id = TEGRA234_MEMORY_CLIENT_APEDMAR,
75 .name = "apedmar",
> 76 .sid = TEGRA234_SID_APE,
77 .regs = {
78 .sid = {
79 .override = 0x4f8,
80 .security = 0x4fc,
81 },
82 },
83 }, {
> 84 .id = TEGRA234_MEMORY_CLIENT_APEDMAW,
85 .name = "apedmaw",
86 .sid = TEGRA234_SID_APE,
87 .regs = {
88 .sid = {
89 .override = 0x500,
90 .security = 0x504,
91 },
92 },
93 },
94 };
95
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
prev parent reply other threads:[~2022-02-21 15:42 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-18 12:16 [PATCH] memory: tegra: Add APE memory clients for Tegra234 Sameer Pujar
2022-02-18 13:04 ` Krzysztof Kozlowski
2022-02-18 13:25 ` Thierry Reding
2022-02-21 15:41 ` kernel test robot [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202202212350.xbGhqWuI-lkp@intel.com \
--to=lkp@intel.com \
--cc=jonathanh@nvidia.com \
--cc=kbuild-all@lists.01.org \
--cc=krzysztof.kozlowski@canonical.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=spujar@nvidia.com \
--cc=thierry.reding@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.