/* * Platform data for the chipidea USB dual role controller */ #ifndef __LINUX_USB_CHIPIDEA_H #define __LINUX_USB_CHIPIDEA_H #include struct ci_hdrc; struct ci_hdrc_platform_data { const char *name; /* offset of the capability registers */ uintptr_t capoffset; unsigned power_budget; struct usb_phy *phy; enum usb_phy_interface phy_mode; unsigned long flags; #define CI_HDRC_REGS_SHARED BIT(0) #define CI_HDRC_REQUIRE_TRANSCEIVER BIT(1) #define CI_HDRC_DISABLE_STREAMING BIT(3) /* * Only set it when DCCPARAMS.DC==1 and DCCPARAMS.HC==1, * but otg is not supported (no register otgsc). */ #define CI_HDRC_DUAL_ROLE_NOT_OTG BIT(4) #define CI_HDRC_IMX28_WRITE_FIX BIT(5) enum usb_dr_mode dr_mode; #define CI_HDRC_CONTROLLER_RESET_EVENT 0 #define CI_HDRC_CONTROLLER_STOPPED_EVENT 1 void (*notify_event) (struct ci_hdrc *ci, unsigned event); struct regulator *reg_vbus; }; /* Default offset of capability registers */ #define DEF_CAPOFFSET 0x100 /* Add ci hdrc device */ struct platform_device *ci_hdrc_add_device(struct device *dev, struct resource *res, int nres, struct ci_hdrc_platform_data *platdata); /* Remove ci hdrc device */ void ci_hdrc_remove_device(struct platform_device *pdev); #endif 6.15.y'>linux-2.6.15.y Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/char/hw_random/exynos-rng.c
AgeCommit message (Expand)Author
2016-06-13hwrng: exynos - fixup IO accesorsBen Dooks
2016-04-05hwrng: exynos - Fix misspelled Samsung addressKrzysztof Kozlowski
2016-04-05hwrng: exynos - Disable runtime PM on driver unbindKrzysztof Kozlowski
2016-04-05hwrng: exynos - Disable runtime PM on probe failureKrzysztof Kozlowski
2016-04-05hwrng: exynos - Fix unbalanced PM runtime put on timeout error pathKrzysztof Kozlowski
2016-04-05hwrng: exynos - Runtime suspend device after initKrzysztof Kozlowski
2016-03-11hwrng: exynos - use __maybe_unused to hide pm functionsArnd Bergmann
2015-10-20hwrng: exynos - Add Device Tree supportKrzysztof Kozlowski
2015-10-20hwrng: exynos - Fix missing configuration after suspend to RAMKrzysztof Kozlowski
2015-10-20hwrng: exynos - Add timeout for waiting on init doneKrzysztof Kozlowski
2015-10-20hwrng: exynos - Fix unbalanced PM runtime get/putsDaniel Thompson
2015-03-16hwrng: exynos - make use of devm_hwrng_registerDmitry Torokhov
2014-12-14Merge tag 'driver-core-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds
2014-12-04hwrandom / exynos / PM: Use CONFIG_PM in #ifdefRafael J. Wysocki
2014-10-20char: hw_random: drop owner assignment from platform_driversWolfram Sang
2014-02-07drivers/char: delete non-required instances of include <linux/init.h>Paul Gortmaker