-----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEZH8oZUiU471FcZm+ONu9yGCSaT4FAlnZ4L8ACgkQONu9yGCS aT7mPBAA0yc9k2D1p7OjRyAVgPvuqvhT36aQ/6Pgdm/5LC0l9nDvlfBfscAuMJau JyqtiAqj5jw5poo/rTUIrJSNE9b0msWNg5Qy8LiWkXUKqvT2PpTgOs0WtnAC8iip YXlIe2LWA9MEV78tdReTYNoIHYflWc1MpH/xQXucdDR3y/KrZQZhRXQc81v1qMGv oQBoSwP3cHFRIIt+nY66ywP63lG5kyu7mIK0z+6thn8EUkTz36weiGI7LjcshIvL JynvEFMkp4dKL2bust4vZTw/gePG3hqODf/W9Gwr2LqtmtNKeKpGLCwCO69Ka2hf ZLNFx14MTq+ammclPTDV4H3jqxP6EcH2J0/FBUCnRImZkP08xoO9YkSjxcRiFacj uKNgvsNdknnhaZjp9xjCirmoDle2tNPe19iotvIN3Sca582pjqj2BBnUL5tPpVhp LroYtmWRfWtjeBrt1qJcMej5yyXu5ji97TZbOZkP68hvDSw90MSBbyPUkqRHX3WN eGq8wbJIgBYT/cOD0B3f8XXyxGuxn9Uzz8n1oBGFMx243BGuMP1NHp3NMddLDfpd CM0MEEGrHieYoN5WvgGmHE8vX1Bg0UULHJL+7Sgg4m/K6Yl2MhQRujuSSGSeYucV LQ/dndL8SX3qkC7KtEGzDjnCghLSMF9VyxgpEJOgnlk+gK2jSLs= =iT+o -----END PGP SIGNATURE----- Merge 4.4.91 into android-4.4 Changes in 4.4.91 drm_fourcc: Fix DRM_FORMAT_MOD_LINEAR #define drm: bridge: add DT bindings for TI ths8135 GFS2: Fix reference to ERR_PTR in gfs2_glock_iter_next RDS: RDMA: Fix the composite message user notification ARM: dts: r8a7790: Use R-Car Gen 2 fallback binding for msiof nodes MIPS: Ensure bss section ends on a long-aligned address MIPS: ralink: Fix incorrect assignment on ralink_soc igb: re-assign hw address pointer on reset after PCI error extcon: axp288: Use vbus-valid instead of -present to determine cable presence sh_eth: use correct name for ECMR_MPDE bit hwmon: (gl520sm) Fix overflows and crash seen when writing into limit attributes iio: adc: axp288: Drop bogus AXP288_ADC_TS_PIN_CTRL register modifications iio: adc: hx711: Add DT binding for avia,hx711 ARM: 8635/1: nommu: allow enabling REMAP_VECTORS_TO_RAM tty: goldfish: Fix a parameter of a call to free_irq IB/ipoib: Fix deadlock over vlan_mutex IB/ipoib: rtnl_unlock can not come after free_netdev IB/ipoib: Replace list_del of the neigh->list with list_del_init drm/amdkfd: fix improper return value on error USB: serial: mos7720: fix control-message error handling USB: serial: mos7840: fix control-message error handling partitions/efi: Fix integer overflow in GPT size calculation ASoC: dapm: handle probe deferrals audit: log 32-bit socketcalls usb: chipidea: vbus event may exist before starting gadget ASoC: dapm: fix some pointer error handling MIPS: Lantiq: Fix another request_mem_region() return code check net: core: Prevent from dereferencing null pointer when releasing SKB net/packet: check length in getsockopt() called with PACKET_HDRLEN team: fix memory leaks usb: plusb: Add support for PL-27A1 mmc: sdio: fix alignment issue in struct sdio_func bridge: netlink: register netdevice before executing changelink netfilter: invoke synchronize_rcu after set the _hook_ to NULL MIPS: IRQ Stack: Unwind IRQ stack onto task stack exynos-gsc: Do not swap cb/cr for semi planar formats netfilter: nfnl_cthelper: fix incorrect helper->expect_class_max parisc: perf: Fix potential NULL pointer dereference iommu/io-pgtable-arm: Check for leaf entry before dereferencing it rds: ib: add error handle md/raid10: submit bio directly to replacement disk i2c: meson: fix wrong variable usage in meson_i2c_put_data xfs: remove kmem_zalloc_greedy libata: transport: Remove circular dependency at free time drivers: firmware: psci: drop duplicate const from psci_of_match IB/qib: fix false-postive maybe-uninitialized warning ARM: remove duplicate 'const' annotations' ALSA: au88x0: avoid theoretical uninitialized access ttpci: address stringop overflow warning Linux 4.4.91 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
172 lines
5.1 KiB
C
172 lines
5.1 KiB
C
/*
|
|
* include/linux/mmc/sdio_func.h
|
|
*
|
|
* Copyright 2007-2008 Pierre Ossman
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or (at
|
|
* your option) any later version.
|
|
*/
|
|
|
|
#ifndef LINUX_MMC_SDIO_FUNC_H
|
|
#define LINUX_MMC_SDIO_FUNC_H
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/mod_devicetable.h>
|
|
|
|
#include <linux/mmc/pm.h>
|
|
|
|
struct mmc_card;
|
|
struct sdio_func;
|
|
|
|
typedef void (sdio_irq_handler_t)(struct sdio_func *);
|
|
|
|
/*
|
|
* Structure used to hold embedded SDIO device data from platform layer
|
|
*/
|
|
struct sdio_embedded_func {
|
|
uint8_t f_class;
|
|
uint32_t f_maxblksize;
|
|
};
|
|
|
|
/*
|
|
* SDIO function CIS tuple (unknown to the core)
|
|
*/
|
|
struct sdio_func_tuple {
|
|
struct sdio_func_tuple *next;
|
|
unsigned char code;
|
|
unsigned char size;
|
|
unsigned char data[0];
|
|
};
|
|
|
|
/*
|
|
* SDIO function devices
|
|
*/
|
|
struct sdio_func {
|
|
struct mmc_card *card; /* the card this device belongs to */
|
|
struct device dev; /* the device */
|
|
sdio_irq_handler_t *irq_handler; /* IRQ callback */
|
|
unsigned int num; /* function number */
|
|
|
|
unsigned char class; /* standard interface class */
|
|
unsigned short vendor; /* vendor id */
|
|
unsigned short device; /* device id */
|
|
|
|
unsigned max_blksize; /* maximum block size */
|
|
unsigned cur_blksize; /* current block size */
|
|
|
|
unsigned enable_timeout; /* max enable timeout in msec */
|
|
|
|
unsigned int state; /* function state */
|
|
#define SDIO_STATE_PRESENT (1<<0) /* present in sysfs */
|
|
|
|
u8 *tmpbuf; /* DMA:able scratch buffer */
|
|
|
|
unsigned num_info; /* number of info strings */
|
|
const char **info; /* info strings */
|
|
|
|
struct sdio_func_tuple *tuples;
|
|
};
|
|
|
|
#define sdio_func_present(f) ((f)->state & SDIO_STATE_PRESENT)
|
|
|
|
#define sdio_func_set_present(f) ((f)->state |= SDIO_STATE_PRESENT)
|
|
|
|
#define sdio_func_id(f) (dev_name(&(f)->dev))
|
|
|
|
#define sdio_get_drvdata(f) dev_get_drvdata(&(f)->dev)
|
|
#define sdio_set_drvdata(f,d) dev_set_drvdata(&(f)->dev, d)
|
|
#define dev_to_sdio_func(d) container_of(d, struct sdio_func, dev)
|
|
|
|
/*
|
|
* SDIO function device driver
|
|
*/
|
|
struct sdio_driver {
|
|
char *name;
|
|
const struct sdio_device_id *id_table;
|
|
|
|
int (*probe)(struct sdio_func *, const struct sdio_device_id *);
|
|
void (*remove)(struct sdio_func *);
|
|
|
|
struct device_driver drv;
|
|
};
|
|
|
|
/**
|
|
* SDIO_DEVICE - macro used to describe a specific SDIO device
|
|
* @vend: the 16 bit manufacturer code
|
|
* @dev: the 16 bit function id
|
|
*
|
|
* This macro is used to create a struct sdio_device_id that matches a
|
|
* specific device. The class field will be set to SDIO_ANY_ID.
|
|
*/
|
|
#define SDIO_DEVICE(vend,dev) \
|
|
.class = SDIO_ANY_ID, \
|
|
.vendor = (vend), .device = (dev)
|
|
|
|
/**
|
|
* SDIO_DEVICE_CLASS - macro used to describe a specific SDIO device class
|
|
* @dev_class: the 8 bit standard interface code
|
|
*
|
|
* This macro is used to create a struct sdio_device_id that matches a
|
|
* specific standard SDIO function type. The vendor and device fields will
|
|
* be set to SDIO_ANY_ID.
|
|
*/
|
|
#define SDIO_DEVICE_CLASS(dev_class) \
|
|
.class = (dev_class), \
|
|
.vendor = SDIO_ANY_ID, .device = SDIO_ANY_ID
|
|
|
|
extern int sdio_register_driver(struct sdio_driver *);
|
|
extern void sdio_unregister_driver(struct sdio_driver *);
|
|
|
|
/*
|
|
* SDIO I/O operations
|
|
*/
|
|
extern void sdio_claim_host(struct sdio_func *func);
|
|
extern void sdio_release_host(struct sdio_func *func);
|
|
|
|
extern int sdio_enable_func(struct sdio_func *func);
|
|
extern int sdio_disable_func(struct sdio_func *func);
|
|
|
|
extern int sdio_set_block_size(struct sdio_func *func, unsigned blksz);
|
|
|
|
extern int sdio_claim_irq(struct sdio_func *func, sdio_irq_handler_t *handler);
|
|
extern int sdio_release_irq(struct sdio_func *func);
|
|
|
|
extern unsigned int sdio_align_size(struct sdio_func *func, unsigned int sz);
|
|
|
|
extern u8 sdio_readb(struct sdio_func *func, unsigned int addr, int *err_ret);
|
|
extern u8 sdio_readb_ext(struct sdio_func *func, unsigned int addr, int *err_ret,
|
|
unsigned in);
|
|
extern u16 sdio_readw(struct sdio_func *func, unsigned int addr, int *err_ret);
|
|
extern u32 sdio_readl(struct sdio_func *func, unsigned int addr, int *err_ret);
|
|
|
|
extern int sdio_memcpy_fromio(struct sdio_func *func, void *dst,
|
|
unsigned int addr, int count);
|
|
extern int sdio_readsb(struct sdio_func *func, void *dst,
|
|
unsigned int addr, int count);
|
|
|
|
extern void sdio_writeb(struct sdio_func *func, u8 b,
|
|
unsigned int addr, int *err_ret);
|
|
extern void sdio_writew(struct sdio_func *func, u16 b,
|
|
unsigned int addr, int *err_ret);
|
|
extern void sdio_writel(struct sdio_func *func, u32 b,
|
|
unsigned int addr, int *err_ret);
|
|
|
|
extern u8 sdio_writeb_readb(struct sdio_func *func, u8 write_byte,
|
|
unsigned int addr, int *err_ret);
|
|
|
|
extern int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr,
|
|
void *src, int count);
|
|
extern int sdio_writesb(struct sdio_func *func, unsigned int addr,
|
|
void *src, int count);
|
|
|
|
extern unsigned char sdio_f0_readb(struct sdio_func *func,
|
|
unsigned int addr, int *err_ret);
|
|
extern void sdio_f0_writeb(struct sdio_func *func, unsigned char b,
|
|
unsigned int addr, int *err_ret);
|
|
|
|
extern mmc_pm_flag_t sdio_get_host_pm_caps(struct sdio_func *func);
|
|
extern int sdio_set_host_pm_flags(struct sdio_func *func, mmc_pm_flag_t flags);
|
|
|
|
#endif /* LINUX_MMC_SDIO_FUNC_H */
|