cregit-Linux how code gets into the kernel

Release 4.16 drivers/media/pci/ddbridge/ddbridge-io.h

/*
 * ddbridge-io.h: Digital Devices bridge I/O inline functions
 *
 * Copyright (C) 2010-2017 Digital Devices GmbH
 *                         Ralph Metzler <rjkm@metzlerbros.de>
 *                         Marcus Metzler <mocm@metzlerbros.de>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 only, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */

#ifndef __DDBRIDGE_IO_H__

#define __DDBRIDGE_IO_H__

#include <linux/io.h>

#include "ddbridge.h"

/******************************************************************************/


static inline u32 ddblreadl(struct ddb_link *link, u32 adr) { return readl(link->dev->regs + adr); }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Scheller27100.00%1100.00%
Total27100.00%1100.00%


static inline void ddblwritel(struct ddb_link *link, u32 val, u32 adr) { writel(val, link->dev->regs + adr); }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Scheller31100.00%1100.00%
Total31100.00%1100.00%


static inline u32 ddbreadl(struct ddb *dev, u32 adr) { return readl(dev->regs + adr); }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Scheller25100.00%1100.00%
Total25100.00%1100.00%


static inline void ddbwritel(struct ddb *dev, u32 val, u32 adr) { writel(val, dev->regs + adr); }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Scheller29100.00%1100.00%
Total29100.00%1100.00%


static inline void ddbcpyto(struct ddb *dev, u32 adr, void *src, long count) { memcpy_toio(dev->regs + adr, src, count); }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Scheller3497.14%150.00%
Randy Dunlap12.86%150.00%
Total35100.00%2100.00%


static inline void ddbcpyfrom(struct ddb *dev, void *dst, u32 adr, long count) { memcpy_fromio(dst, dev->regs + adr, count); }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Scheller3497.14%150.00%
Randy Dunlap12.86%150.00%
Total35100.00%2100.00%


static inline u32 safe_ddbreadl(struct ddb *dev, u32 adr) { u32 val = ddbreadl(dev, adr); /* (ddb)readl returns (uint)-1 (all bits set) on failure, catch that */ if (val == ~0) { dev_err(&dev->pdev->dev, "ddbreadl failure, adr=%08x\n", adr); return 0; } return val; }

Contributors

PersonTokensPropCommitsCommitProp
Daniel Scheller55100.00%1100.00%
Total55100.00%1100.00%

#endif /* __DDBRIDGE_IO_H__ */

Overall Contributors

PersonTokensPropCommitsCommitProp
Daniel Scheller25299.21%150.00%
Randy Dunlap20.79%150.00%
Total254100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.