From: Bjorn Helgaas <helgaas@kernel.org>
To: Shradha Todi <shradha.t@samsung.com>
Cc: bhelgaas@google.com, robh+dt@kernel.org,
krzysztof.kozlowski+dt@linaro.org, kishon@ti.com,
vkoul@kernel.org, lpieralisi@kernel.org, kw@linux.com,
mani@kernel.org, arnd@arndb.de, gregkh@linuxfoundation.org,
alim.akhtar@samsung.com, ajaykumar.rs@samsung.com,
rcsekar@samsung.com, sriranjani.p@samsung.com,
bharat.uppal@samsung.com, s.prashar@samsung.com,
aswani.reddy@samsung.com, pankaj.dubey@samsung.com,
p.rajanbabu@samsung.com, niyas.ahmed@samsung.com,
chanho61.park@samsung.com, linux-pci@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-phy@lists.infradead.org
Subject: Re: [PATCH 3/6] PCI: dwc: fsd: Add FSD PCIe Controller driver support
Date: Mon, 21 Nov 2022 17:18:47 -0600 [thread overview]
Message-ID: <20221121231847.GA141229@bhelgaas> (raw)
In-Reply-To: <20221121105210.68596-4-shradha.t@samsung.com>
On Mon, Nov 21, 2022 at 04:22:07PM +0530, Shradha Todi wrote:
> Add PCIe controller driver file for PCIe controller
> found in fsd SoC family. This driver adds support for both RC
> and EP mode.
>
> Signed-off-by: Niyas Ahmed S T <niyas.ahmed@samsung.com>
> Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com>
> Signed-off-by: Padmanabhan Rajanbabu <p.rajanbabu@samsung.com>
> Signed-off-by: Shradha Todi <shradha.t@samsung.com>
Would be much, much better if drivers can be combined as Krzysztof
suggests. Superficial comments below if not.
> +config PCIE_FSD
> + bool "Samsung FSD PCIe Controller"
> + default n
Unnecessary since "default n" is the default. Please read and learn
from the existing Kconfig for other drivers.
> +config PCIE_FSD_HOST
> + bool "PCIe FSD Host Mode"
> + depends on PCI
Shouldn't be necessary because the entire menu depends on PCI:
menu "DesignWare PCI Core Support"
depends on PCI
> + depends on PCI_MSI_IRQ_DOMAIN || PCI_DOMAIN
> + select PCIE_DW_HOST
> + select PCIE_FSD
> + default n
Unnecessary.
> +config PCIE_FSD_EP
> + bool "PCIe FSD Endpoint Mode"
> + depends on PCI_ENDPOINT
> + select PCIE_DW_EP
> + select PCIE_FSD
> + default n
Unnecessary.
> +// SPDX-License-Identifier: GPL-2.0
> +/*
> + * PCIe host controller driver for Tesla fsd SoC
> + *
> + * Copyright (C) 2017-2022 Samsung Electronics Co., Ltd. http://www.samsung.com
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
Unnecessary copyright text since you have SPDX at the top.
> + * struct fsd_pcie - representation of the pci controller
s/pci/PCI/ in English text (you do it inconsistently)
s/pcie/PCIe/ same
> + * @pci: representation of dwc pcie device structure
> + * @pdata: private data to determine the oprations supported by device
s/oprations/operations/
> + * @appl_base: represent the appl base
> + * @sysreg: represent the system register base
> + * @sysreg_base: represents the offset of the system register required
"representation", "represent", "represents"? Pick one.
> + * @phy: represents the phy device associated for the controller
s/phy/PHY/ in English text
> + /* External Local Bus interface(ELBI) Register */
Space before "(" in English text.
> + dev_err(dev, "failed to map dbi_base\n");
> + dev_err(dev, "Sysreg regmap lookup failed.\n");
> + dev_err(dev, "Couldn't get the register offset for syscon!\n");
> + dev_err(dev, "couldn't get aux clock\n");
Random capitalization of driver messages. Pick one.
> + /* assert LTSSM enable */
> + /* Return success as link might come up later */
Random capitalization of comments. Pick one.
> + case RADM_VENDOR_MSG:
> + pr_info("Interrupt received for\n");
Must include device identification. This one also looks incomplete
("for ..."?)
> + /* To indicate that controller has accepted to send
> + * Latency Tolerance reporting message
Use standard multi-line comment format.
> + dev_err(dev, "failed to get msi irq\n");
s/msi/MSI/ in English text.
s/irq/IRQ/ also
> + .start_link = fsd_pcie_establish_link,
fsd_pcie_start_link() to match function pointer name.
> + pci->dbi_base2 = NULL;
> + pci->dbi_base = NULL;
> + pci->atu_base = NULL;
Unnecessary since you used kzalloc().
> + dev_info(dev, "FSD PCIe probe completed successfully\n");
Questionable utility. Most drivers don't emit this, or if they do,
they include some useful information like address, IRQ, etc.
> + dev_err(dev, "PCIe Failed to set 36 bit dma mask\n");
s/dma/DMA/ in English text.
next prev parent reply other threads:[~2022-11-21 23:18 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20221121104714epcas5p27508b91010c72117dd7116fc387b382f@epcas5p2.samsung.com>
2022-11-21 10:52 ` [PATCH 0/6] Add PCIe support for Tesla FSD SoC Shradha Todi
[not found] ` <CGME20221121104719epcas5p2f87febfba74a4ca6807b3095acf507d0@epcas5p2.samsung.com>
2022-11-21 10:52 ` [PATCH 1/6] dt-bindings: phy: Add PCIe PHY bindings for FSD Shradha Todi
2022-11-21 11:59 ` Krzysztof Kozlowski
[not found] ` <CGME20221121104725epcas5p3af00b0c717f2132f5c1ba7fd4e903e26@epcas5p3.samsung.com>
2022-11-21 10:52 ` [PATCH 2/6] dt-bindings: PCI: Add PCIe controller " Shradha Todi
2022-11-21 12:05 ` Krzysztof Kozlowski
[not found] ` <CGME20221121104731epcas5p48f96c92e5bfb4ede56ce74a78887a2f3@epcas5p4.samsung.com>
2022-11-21 10:52 ` [PATCH 3/6] PCI: dwc: fsd: Add FSD PCIe Controller driver support Shradha Todi
2022-11-21 12:07 ` Krzysztof Kozlowski
2022-11-21 23:18 ` Bjorn Helgaas [this message]
2022-11-30 18:44 ` Rob Herring
[not found] ` <CGME20221121104736epcas5p36c12ff0b575af77f8cf99811b055b339@epcas5p3.samsung.com>
2022-11-21 10:52 ` [PATCH 4/6] phy: tesla-pcie: Add PCIe PHY driver support for FSD Shradha Todi
2022-11-21 12:08 ` Krzysztof Kozlowski
[not found] ` <CGME20221121104741epcas5p31e1320bc4c0912485c1fabe52ea19988@epcas5p3.samsung.com>
2022-11-21 10:52 ` [PATCH 5/6] arm64: dts: fsd: Add PCIe support for Tesla FSD SoC Shradha Todi
2022-11-21 12:11 ` Krzysztof Kozlowski
2022-12-03 9:55 ` kernel test robot
[not found] ` <CGME20221121104746epcas5p109c7bb299cf19070a9237c00c162ed8f@epcas5p1.samsung.com>
2022-11-21 10:52 ` [PATCH 6/6] misc: pci_endpoint_test: Add driver data for FSD PCIe controllers Shradha Todi
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=20221121231847.GA141229@bhelgaas \
--to=helgaas@kernel.org \
--cc=ajaykumar.rs@samsung.com \
--cc=alim.akhtar@samsung.com \
--cc=arnd@arndb.de \
--cc=aswani.reddy@samsung.com \
--cc=bharat.uppal@samsung.com \
--cc=bhelgaas@google.com \
--cc=chanho61.park@samsung.com \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=kishon@ti.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=kw@linux.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=lpieralisi@kernel.org \
--cc=mani@kernel.org \
--cc=niyas.ahmed@samsung.com \
--cc=p.rajanbabu@samsung.com \
--cc=pankaj.dubey@samsung.com \
--cc=rcsekar@samsung.com \
--cc=robh+dt@kernel.org \
--cc=s.prashar@samsung.com \
--cc=shradha.t@samsung.com \
--cc=sriranjani.p@samsung.com \
--cc=vkoul@kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).