Commit 0f9bfb97 authored by Logan Gunthorpe's avatar Logan Gunthorpe Committed by Jon Mason

ntb_hw_amd: Style fixes: open code macros that just obfuscate code

As per a comments in [1] by Greg Kroah-Hartman, the ndev_* macros should
be cleaned up. This makes it more clear what's actually going on when
reading the code.

[1] http://www.spinics.net/lists/linux-pci/msg56904.htmlSigned-off-by: default avatarLogan Gunthorpe <logang@deltatee.com>
Signed-off-by: default avatarJon Mason <jdmason@kudzu.us>
parent 3c69f5d6
...@@ -133,7 +133,7 @@ static int amd_ntb_mw_set_trans(struct ntb_dev *ntb, int pidx, int idx, ...@@ -133,7 +133,7 @@ static int amd_ntb_mw_set_trans(struct ntb_dev *ntb, int pidx, int idx,
if (bar < 0) if (bar < 0)
return bar; return bar;
mw_size = pci_resource_len(ndev->ntb.pdev, bar); mw_size = pci_resource_len(ntb->pdev, bar);
/* make sure the range fits in the usable mw size */ /* make sure the range fits in the usable mw size */
if (size > mw_size) if (size > mw_size)
...@@ -142,7 +142,7 @@ static int amd_ntb_mw_set_trans(struct ntb_dev *ntb, int pidx, int idx, ...@@ -142,7 +142,7 @@ static int amd_ntb_mw_set_trans(struct ntb_dev *ntb, int pidx, int idx,
mmio = ndev->self_mmio; mmio = ndev->self_mmio;
peer_mmio = ndev->peer_mmio; peer_mmio = ndev->peer_mmio;
base_addr = pci_resource_start(ndev->ntb.pdev, bar); base_addr = pci_resource_start(ntb->pdev, bar);
if (bar != 1) { if (bar != 1) {
xlat_reg = AMD_BAR23XLAT_OFFSET + ((bar - 2) << 2); xlat_reg = AMD_BAR23XLAT_OFFSET + ((bar - 2) << 2);
...@@ -232,7 +232,7 @@ static u64 amd_ntb_link_is_up(struct ntb_dev *ntb, ...@@ -232,7 +232,7 @@ static u64 amd_ntb_link_is_up(struct ntb_dev *ntb,
if (width) if (width)
*width = NTB_LNK_STA_WIDTH(ndev->lnk_sta); *width = NTB_LNK_STA_WIDTH(ndev->lnk_sta);
dev_dbg(ndev_dev(ndev), "link is up.\n"); dev_dbg(&ntb->pdev->dev, "link is up.\n");
ret = 1; ret = 1;
} else { } else {
...@@ -241,7 +241,7 @@ static u64 amd_ntb_link_is_up(struct ntb_dev *ntb, ...@@ -241,7 +241,7 @@ static u64 amd_ntb_link_is_up(struct ntb_dev *ntb,
if (width) if (width)
*width = NTB_WIDTH_NONE; *width = NTB_WIDTH_NONE;
dev_dbg(ndev_dev(ndev), "link is down.\n"); dev_dbg(&ntb->pdev->dev, "link is down.\n");
} }
return ret; return ret;
...@@ -261,7 +261,7 @@ static int amd_ntb_link_enable(struct ntb_dev *ntb, ...@@ -261,7 +261,7 @@ static int amd_ntb_link_enable(struct ntb_dev *ntb,
if (ndev->ntb.topo == NTB_TOPO_SEC) if (ndev->ntb.topo == NTB_TOPO_SEC)
return -EINVAL; return -EINVAL;
dev_dbg(ndev_dev(ndev), "Enabling Link.\n"); dev_dbg(&ntb->pdev->dev, "Enabling Link.\n");
ntb_ctl = readl(mmio + AMD_CNTL_OFFSET); ntb_ctl = readl(mmio + AMD_CNTL_OFFSET);
ntb_ctl |= (PMM_REG_CTL | SMM_REG_CTL); ntb_ctl |= (PMM_REG_CTL | SMM_REG_CTL);
...@@ -282,7 +282,7 @@ static int amd_ntb_link_disable(struct ntb_dev *ntb) ...@@ -282,7 +282,7 @@ static int amd_ntb_link_disable(struct ntb_dev *ntb)
if (ndev->ntb.topo == NTB_TOPO_SEC) if (ndev->ntb.topo == NTB_TOPO_SEC)
return -EINVAL; return -EINVAL;
dev_dbg(ndev_dev(ndev), "Enabling Link.\n"); dev_dbg(&ntb->pdev->dev, "Enabling Link.\n");
ntb_ctl = readl(mmio + AMD_CNTL_OFFSET); ntb_ctl = readl(mmio + AMD_CNTL_OFFSET);
ntb_ctl &= ~(PMM_REG_CTL | SMM_REG_CTL); ntb_ctl &= ~(PMM_REG_CTL | SMM_REG_CTL);
...@@ -500,18 +500,19 @@ static void amd_ack_smu(struct amd_ntb_dev *ndev, u32 bit) ...@@ -500,18 +500,19 @@ static void amd_ack_smu(struct amd_ntb_dev *ndev, u32 bit)
static void amd_handle_event(struct amd_ntb_dev *ndev, int vec) static void amd_handle_event(struct amd_ntb_dev *ndev, int vec)
{ {
void __iomem *mmio = ndev->self_mmio; void __iomem *mmio = ndev->self_mmio;
struct device *dev = &ndev->ntb.pdev->dev;
u32 status; u32 status;
status = readl(mmio + AMD_INTSTAT_OFFSET); status = readl(mmio + AMD_INTSTAT_OFFSET);
if (!(status & AMD_EVENT_INTMASK)) if (!(status & AMD_EVENT_INTMASK))
return; return;
dev_dbg(ndev_dev(ndev), "status = 0x%x and vec = %d\n", status, vec); dev_dbg(dev, "status = 0x%x and vec = %d\n", status, vec);
status &= AMD_EVENT_INTMASK; status &= AMD_EVENT_INTMASK;
switch (status) { switch (status) {
case AMD_PEER_FLUSH_EVENT: case AMD_PEER_FLUSH_EVENT:
dev_info(ndev_dev(ndev), "Flush is done.\n"); dev_info(dev, "Flush is done.\n");
break; break;
case AMD_PEER_RESET_EVENT: case AMD_PEER_RESET_EVENT:
amd_ack_smu(ndev, AMD_PEER_RESET_EVENT); amd_ack_smu(ndev, AMD_PEER_RESET_EVENT);
...@@ -537,7 +538,7 @@ static void amd_handle_event(struct amd_ntb_dev *ndev, int vec) ...@@ -537,7 +538,7 @@ static void amd_handle_event(struct amd_ntb_dev *ndev, int vec)
status = readl(mmio + AMD_PMESTAT_OFFSET); status = readl(mmio + AMD_PMESTAT_OFFSET);
/* check if this is WAKEUP event */ /* check if this is WAKEUP event */
if (status & 0x1) if (status & 0x1)
dev_info(ndev_dev(ndev), "Wakeup is done.\n"); dev_info(dev, "Wakeup is done.\n");
amd_ack_smu(ndev, AMD_PEER_D0_EVENT); amd_ack_smu(ndev, AMD_PEER_D0_EVENT);
...@@ -546,14 +547,14 @@ static void amd_handle_event(struct amd_ntb_dev *ndev, int vec) ...@@ -546,14 +547,14 @@ static void amd_handle_event(struct amd_ntb_dev *ndev, int vec)
AMD_LINK_HB_TIMEOUT); AMD_LINK_HB_TIMEOUT);
break; break;
default: default:
dev_info(ndev_dev(ndev), "event status = 0x%x.\n", status); dev_info(dev, "event status = 0x%x.\n", status);
break; break;
} }
} }
static irqreturn_t ndev_interrupt(struct amd_ntb_dev *ndev, int vec) static irqreturn_t ndev_interrupt(struct amd_ntb_dev *ndev, int vec)
{ {
dev_dbg(ndev_dev(ndev), "vec %d\n", vec); dev_dbg(&ndev->ntb.pdev->dev, "vec %d\n", vec);
if (vec > (AMD_DB_CNT - 1) || (ndev->msix_vec_count == 1)) if (vec > (AMD_DB_CNT - 1) || (ndev->msix_vec_count == 1))
amd_handle_event(ndev, vec); amd_handle_event(ndev, vec);
...@@ -575,7 +576,7 @@ static irqreturn_t ndev_irq_isr(int irq, void *dev) ...@@ -575,7 +576,7 @@ static irqreturn_t ndev_irq_isr(int irq, void *dev)
{ {
struct amd_ntb_dev *ndev = dev; struct amd_ntb_dev *ndev = dev;
return ndev_interrupt(ndev, irq - ndev_pdev(ndev)->irq); return ndev_interrupt(ndev, irq - ndev->ntb.pdev->irq);
} }
static int ndev_init_isr(struct amd_ntb_dev *ndev, static int ndev_init_isr(struct amd_ntb_dev *ndev,
...@@ -584,7 +585,7 @@ static int ndev_init_isr(struct amd_ntb_dev *ndev, ...@@ -584,7 +585,7 @@ static int ndev_init_isr(struct amd_ntb_dev *ndev,
struct pci_dev *pdev; struct pci_dev *pdev;
int rc, i, msix_count, node; int rc, i, msix_count, node;
pdev = ndev_pdev(ndev); pdev = ndev->ntb.pdev;
node = dev_to_node(&pdev->dev); node = dev_to_node(&pdev->dev);
...@@ -626,7 +627,7 @@ static int ndev_init_isr(struct amd_ntb_dev *ndev, ...@@ -626,7 +627,7 @@ static int ndev_init_isr(struct amd_ntb_dev *ndev,
goto err_msix_request; goto err_msix_request;
} }
dev_dbg(ndev_dev(ndev), "Using msix interrupts\n"); dev_dbg(&pdev->dev, "Using msix interrupts\n");
ndev->db_count = msix_min; ndev->db_count = msix_min;
ndev->msix_vec_count = msix_max; ndev->msix_vec_count = msix_max;
return 0; return 0;
...@@ -653,7 +654,7 @@ static int ndev_init_isr(struct amd_ntb_dev *ndev, ...@@ -653,7 +654,7 @@ static int ndev_init_isr(struct amd_ntb_dev *ndev,
if (rc) if (rc)
goto err_msi_request; goto err_msi_request;
dev_dbg(ndev_dev(ndev), "Using msi interrupts\n"); dev_dbg(&pdev->dev, "Using msi interrupts\n");
ndev->db_count = 1; ndev->db_count = 1;
ndev->msix_vec_count = 1; ndev->msix_vec_count = 1;
return 0; return 0;
...@@ -670,7 +671,7 @@ static int ndev_init_isr(struct amd_ntb_dev *ndev, ...@@ -670,7 +671,7 @@ static int ndev_init_isr(struct amd_ntb_dev *ndev,
if (rc) if (rc)
goto err_intx_request; goto err_intx_request;
dev_dbg(ndev_dev(ndev), "Using intx interrupts\n"); dev_dbg(&pdev->dev, "Using intx interrupts\n");
ndev->db_count = 1; ndev->db_count = 1;
ndev->msix_vec_count = 1; ndev->msix_vec_count = 1;
return 0; return 0;
...@@ -685,7 +686,7 @@ static void ndev_deinit_isr(struct amd_ntb_dev *ndev) ...@@ -685,7 +686,7 @@ static void ndev_deinit_isr(struct amd_ntb_dev *ndev)
void __iomem *mmio = ndev->self_mmio; void __iomem *mmio = ndev->self_mmio;
int i; int i;
pdev = ndev_pdev(ndev); pdev = ndev->ntb.pdev;
/* Mask all doorbell interrupts */ /* Mask all doorbell interrupts */
ndev->db_mask = ndev->db_valid_mask; ndev->db_mask = ndev->db_valid_mask;
...@@ -811,7 +812,8 @@ static void ndev_init_debugfs(struct amd_ntb_dev *ndev) ...@@ -811,7 +812,8 @@ static void ndev_init_debugfs(struct amd_ntb_dev *ndev)
ndev->debugfs_info = NULL; ndev->debugfs_info = NULL;
} else { } else {
ndev->debugfs_dir = ndev->debugfs_dir =
debugfs_create_dir(ndev_name(ndev), debugfs_dir); debugfs_create_dir(pci_name(ndev->ntb.pdev),
debugfs_dir);
if (!ndev->debugfs_dir) if (!ndev->debugfs_dir)
ndev->debugfs_info = NULL; ndev->debugfs_info = NULL;
else else
...@@ -846,7 +848,7 @@ static int amd_poll_link(struct amd_ntb_dev *ndev) ...@@ -846,7 +848,7 @@ static int amd_poll_link(struct amd_ntb_dev *ndev)
reg = readl(mmio + AMD_SIDEINFO_OFFSET); reg = readl(mmio + AMD_SIDEINFO_OFFSET);
reg &= NTB_LIN_STA_ACTIVE_BIT; reg &= NTB_LIN_STA_ACTIVE_BIT;
dev_dbg(ndev_dev(ndev), "%s: reg_val = 0x%x.\n", __func__, reg); dev_dbg(&ndev->ntb.pdev->dev, "%s: reg_val = 0x%x.\n", __func__, reg);
if (reg == ndev->cntl_sta) if (reg == ndev->cntl_sta)
return 0; return 0;
...@@ -928,7 +930,8 @@ static int amd_init_ntb(struct amd_ntb_dev *ndev) ...@@ -928,7 +930,8 @@ static int amd_init_ntb(struct amd_ntb_dev *ndev)
break; break;
default: default:
dev_err(ndev_dev(ndev), "AMD NTB does not support B2B mode.\n"); dev_err(&ndev->ntb.pdev->dev,
"AMD NTB does not support B2B mode.\n");
return -EINVAL; return -EINVAL;
} }
...@@ -957,10 +960,10 @@ static int amd_init_dev(struct amd_ntb_dev *ndev) ...@@ -957,10 +960,10 @@ static int amd_init_dev(struct amd_ntb_dev *ndev)
struct pci_dev *pdev; struct pci_dev *pdev;
int rc = 0; int rc = 0;
pdev = ndev_pdev(ndev); pdev = ndev->ntb.pdev;
ndev->ntb.topo = amd_get_topo(ndev); ndev->ntb.topo = amd_get_topo(ndev);
dev_dbg(ndev_dev(ndev), "AMD NTB topo is %s\n", dev_dbg(&pdev->dev, "AMD NTB topo is %s\n",
ntb_topo_string(ndev->ntb.topo)); ntb_topo_string(ndev->ntb.topo));
rc = amd_init_ntb(ndev); rc = amd_init_ntb(ndev);
...@@ -969,7 +972,7 @@ static int amd_init_dev(struct amd_ntb_dev *ndev) ...@@ -969,7 +972,7 @@ static int amd_init_dev(struct amd_ntb_dev *ndev)
rc = amd_init_isr(ndev); rc = amd_init_isr(ndev);
if (rc) { if (rc) {
dev_err(ndev_dev(ndev), "fail to init isr.\n"); dev_err(&pdev->dev, "fail to init isr.\n");
return rc; return rc;
} }
...@@ -1007,7 +1010,7 @@ static int amd_ntb_init_pci(struct amd_ntb_dev *ndev, ...@@ -1007,7 +1010,7 @@ static int amd_ntb_init_pci(struct amd_ntb_dev *ndev,
rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
if (rc) if (rc)
goto err_dma_mask; goto err_dma_mask;
dev_warn(ndev_dev(ndev), "Cannot DMA highmem\n"); dev_warn(&pdev->dev, "Cannot DMA highmem\n");
} }
rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
...@@ -1015,7 +1018,7 @@ static int amd_ntb_init_pci(struct amd_ntb_dev *ndev, ...@@ -1015,7 +1018,7 @@ static int amd_ntb_init_pci(struct amd_ntb_dev *ndev,
rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); rc = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
if (rc) if (rc)
goto err_dma_mask; goto err_dma_mask;
dev_warn(ndev_dev(ndev), "Cannot DMA consistent highmem\n"); dev_warn(&pdev->dev, "Cannot DMA consistent highmem\n");
} }
ndev->self_mmio = pci_iomap(pdev, 0, 0); ndev->self_mmio = pci_iomap(pdev, 0, 0);
...@@ -1038,7 +1041,7 @@ static int amd_ntb_init_pci(struct amd_ntb_dev *ndev, ...@@ -1038,7 +1041,7 @@ static int amd_ntb_init_pci(struct amd_ntb_dev *ndev,
static void amd_ntb_deinit_pci(struct amd_ntb_dev *ndev) static void amd_ntb_deinit_pci(struct amd_ntb_dev *ndev)
{ {
struct pci_dev *pdev = ndev_pdev(ndev); struct pci_dev *pdev = ndev->ntb.pdev;
pci_iounmap(pdev, ndev->self_mmio); pci_iounmap(pdev, ndev->self_mmio);
......
...@@ -211,9 +211,6 @@ struct amd_ntb_dev { ...@@ -211,9 +211,6 @@ struct amd_ntb_dev {
struct dentry *debugfs_info; struct dentry *debugfs_info;
}; };
#define ndev_pdev(ndev) ((ndev)->ntb.pdev)
#define ndev_name(ndev) pci_name(ndev_pdev(ndev))
#define ndev_dev(ndev) (&ndev_pdev(ndev)->dev)
#define ntb_ndev(__ntb) container_of(__ntb, struct amd_ntb_dev, ntb) #define ntb_ndev(__ntb) container_of(__ntb, struct amd_ntb_dev, ntb)
#define hb_ndev(__work) container_of(__work, struct amd_ntb_dev, hb_timer.work) #define hb_ndev(__work) container_of(__work, struct amd_ntb_dev, hb_timer.work)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment