mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 03:56:47 +07:00
3e701cdfe6
We have support for a few new drivers: - Samsung s2mps11 - Wolfson Microelectronics wm5102 and wm5110 - Marvell 88PM800 and 88PM805 - TI twl6041 We also have our regular driver improvements: - Device tree and IRQ domain support for STE AB8500 - Regmap and devm_* API conversion for TI tps6586x - Device tree support for Samsung max77686 - devm_* API conversion for STE AB3100 Besides that, quite a lot of fixing and cleanup for mc13xxx, tps65910, tps65090, da9052 and twl-core. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iQIcBAABAgAGBQJQFpGVAAoJEIqAPN1PVmxKFNoP/1dkYngrxxV6cxdyLJ74APhG lVKPgaDxQhdgfwCZJmMeZK1UphZo80cWnEXG6sTHZUEQdTaslSJu5SuPfUM+fo7e 52/dU0nx0ZE04pwPQLHbidS4TmHlbLg9oM2kmIf9RO5rg34GodwVgRL/4+k1qvhz aWYJt9erFhQOpqaSX66mXHSuhvzHypbcE7d2B2Ykmh3NoYiH2w9H9KmIbbb+ZLq8 +Bp/i5Ys/vfooo+8IE2w6KZfIzMwsmmtWjjr/38yuQJaKZCh/zn23DM9HsdrVf++ RzfniRF4YBxmeKi7zi8MFIYys8filTCXA9dXbGSAKCuUCT37yZRnUxTeN1bn7Bux A7KRpG7pUKQKVKqCTndvK5LcQKlT33XyW2ZzV1wVWX2JkCJ+gilPeykb8IabNvGX nIp0STEGR/WdCLEAKo8pJF7Usn0RuUzAug02SG/mQ6dpnLoZqp0Od5W7gRhT7M7h hXr/xKJ6cG5YwicpAdy5kJJ0dRgQrtaHwxrF0B68AXZ7CmAtkPuEGCYhUCFnGQUH XJ0CodAqqVBRyYiQS4zIpIh2nqhIdsgv4OC1+kVLbubQk+PR88zG9Jvg6i1HQi/A OHi7N5Wite3YUrs3sBzDKnEc/Il2YRhVaz2SLVNfZR0PS7hywHN3rK/tVFINTgei jNEz1H6hu7ToNLfs0UzP =c28c -----END PGP SIGNATURE----- Merge tag 'mfd-3.6-1' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6 Pull MFD bits from Samuel Ortiz: "We have support for a few new drivers: - Samsung s2mps11 - Wolfson Microelectronics wm5102 and wm5110 - Marvell 88PM800 and 88PM805 - TI twl6041 We also have our regular driver improvements: - Device tree and IRQ domain support for STE AB8500 - Regmap and devm_* API conversion for TI tps6586x - Device tree support for Samsung max77686 - devm_* API conversion for STE AB3100 Besides that, quite a lot of fixing and cleanup for mc13xxx, tps65910, tps65090, da9052 and twl-core." Fix up mostly trivial conflicts, with the exception of drivers/usb/host/ehci-omap.c in particular, which had some re-organization of the reset sequence (commit1a49e2ac96
: "EHCI: centralize controller initialization") that clashed with commit2761a63945
("mfd: USB: Fix the omap-usb EHCI ULPI PHY reset fix issues"). In particular, commit2761a63945
moved the usb_add_hcd() to the *middle* of the reset sequence, which clashes fairly badly with the reset sequence re-organization (although it could have been done inside the new omap_ehci_init() function). I left that part of commit2761a63945
just undone. * tag 'mfd-3.6-1' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6: (110 commits) mfd: Ensure AB8500 platform data is passed through db8500-prcmu to MFD Core mfd: Arizone core should select MFD_CORE mfd: Fix arizona-irq.c build by selecting REGMAP_IRQ mfd: Add debug trace on entering and leaving arizone runtime suspend mfd: Correct tps65090 cell names mfd: Remove gpio support from tps6586x core driver ARM: tegra: defconfig: Enable tps6586x gpio gpio: tps6586x: Add gpio support through platform driver mfd: Cache tps6586x register through regmap mfd: Use regmap for tps6586x register access. mfd: Use devm managed resources for tps6586x input: Add onkey support for 88PM80X PMIC mfd: Add support for twl6041 mfd: Fix twl6040 revision information mfd: Matches should be NULL when populate anatop child devices input: ab8500-ponkey: Create AB8500 domain IRQ mapping mfd: Add missing out of memory check for pcf50633 Documentation: Describe the AB8500 Device Tree bindings mfd: Add tps65910 32-kHz-crystal-input init mfd: Drop modifying mc13xxx driver's id_table in probe ...
156 lines
3.8 KiB
C
156 lines
3.8 KiB
C
/*
|
|
* Copyright (C) ST-Ericsson SA 2010
|
|
*
|
|
* License Terms: GNU General Public License v2
|
|
* Author: Sundar Iyer <sundar.iyer@stericsson.com> for ST-Ericsson
|
|
*
|
|
* AB8500 Power-On Key handler
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/input.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/mfd/abx500/ab8500.h>
|
|
#include <linux/of.h>
|
|
#include <linux/slab.h>
|
|
|
|
/**
|
|
* struct ab8500_ponkey - ab8500 ponkey information
|
|
* @input_dev: pointer to input device
|
|
* @ab8500: ab8500 parent
|
|
* @irq_dbf: irq number for falling transition
|
|
* @irq_dbr: irq number for rising transition
|
|
*/
|
|
struct ab8500_ponkey {
|
|
struct input_dev *idev;
|
|
struct ab8500 *ab8500;
|
|
int irq_dbf;
|
|
int irq_dbr;
|
|
};
|
|
|
|
/* AB8500 gives us an interrupt when ONKEY is held */
|
|
static irqreturn_t ab8500_ponkey_handler(int irq, void *data)
|
|
{
|
|
struct ab8500_ponkey *ponkey = data;
|
|
|
|
if (irq == ponkey->irq_dbf)
|
|
input_report_key(ponkey->idev, KEY_POWER, true);
|
|
else if (irq == ponkey->irq_dbr)
|
|
input_report_key(ponkey->idev, KEY_POWER, false);
|
|
|
|
input_sync(ponkey->idev);
|
|
|
|
return IRQ_HANDLED;
|
|
}
|
|
|
|
static int __devinit ab8500_ponkey_probe(struct platform_device *pdev)
|
|
{
|
|
struct ab8500 *ab8500 = dev_get_drvdata(pdev->dev.parent);
|
|
struct ab8500_ponkey *ponkey;
|
|
struct input_dev *input;
|
|
int irq_dbf, irq_dbr;
|
|
int error;
|
|
|
|
irq_dbf = platform_get_irq_byname(pdev, "ONKEY_DBF");
|
|
if (irq_dbf < 0) {
|
|
dev_err(&pdev->dev, "No IRQ for ONKEY_DBF, error=%d\n", irq_dbf);
|
|
return irq_dbf;
|
|
}
|
|
|
|
irq_dbr = platform_get_irq_byname(pdev, "ONKEY_DBR");
|
|
if (irq_dbr < 0) {
|
|
dev_err(&pdev->dev, "No IRQ for ONKEY_DBR, error=%d\n", irq_dbr);
|
|
return irq_dbr;
|
|
}
|
|
|
|
ponkey = kzalloc(sizeof(struct ab8500_ponkey), GFP_KERNEL);
|
|
input = input_allocate_device();
|
|
if (!ponkey || !input) {
|
|
error = -ENOMEM;
|
|
goto err_free_mem;
|
|
}
|
|
|
|
ponkey->idev = input;
|
|
ponkey->ab8500 = ab8500;
|
|
ponkey->irq_dbf = ab8500_irq_get_virq(ab8500, irq_dbf);
|
|
ponkey->irq_dbr = ab8500_irq_get_virq(ab8500, irq_dbr);
|
|
|
|
input->name = "AB8500 POn(PowerOn) Key";
|
|
input->dev.parent = &pdev->dev;
|
|
|
|
input_set_capability(input, EV_KEY, KEY_POWER);
|
|
|
|
error = request_any_context_irq(ponkey->irq_dbf, ab8500_ponkey_handler,
|
|
0, "ab8500-ponkey-dbf", ponkey);
|
|
if (error < 0) {
|
|
dev_err(ab8500->dev, "Failed to request dbf IRQ#%d: %d\n",
|
|
ponkey->irq_dbf, error);
|
|
goto err_free_mem;
|
|
}
|
|
|
|
error = request_any_context_irq(ponkey->irq_dbr, ab8500_ponkey_handler,
|
|
0, "ab8500-ponkey-dbr", ponkey);
|
|
if (error < 0) {
|
|
dev_err(ab8500->dev, "Failed to request dbr IRQ#%d: %d\n",
|
|
ponkey->irq_dbr, error);
|
|
goto err_free_dbf_irq;
|
|
}
|
|
|
|
error = input_register_device(ponkey->idev);
|
|
if (error) {
|
|
dev_err(ab8500->dev, "Can't register input device: %d\n", error);
|
|
goto err_free_dbr_irq;
|
|
}
|
|
|
|
platform_set_drvdata(pdev, ponkey);
|
|
return 0;
|
|
|
|
err_free_dbr_irq:
|
|
free_irq(ponkey->irq_dbr, ponkey);
|
|
err_free_dbf_irq:
|
|
free_irq(ponkey->irq_dbf, ponkey);
|
|
err_free_mem:
|
|
input_free_device(input);
|
|
kfree(ponkey);
|
|
|
|
return error;
|
|
}
|
|
|
|
static int __devexit ab8500_ponkey_remove(struct platform_device *pdev)
|
|
{
|
|
struct ab8500_ponkey *ponkey = platform_get_drvdata(pdev);
|
|
|
|
free_irq(ponkey->irq_dbf, ponkey);
|
|
free_irq(ponkey->irq_dbr, ponkey);
|
|
input_unregister_device(ponkey->idev);
|
|
kfree(ponkey);
|
|
|
|
platform_set_drvdata(pdev, NULL);
|
|
|
|
return 0;
|
|
}
|
|
|
|
#ifdef CONFIG_OF
|
|
static const struct of_device_id ab8500_ponkey_match[] = {
|
|
{ .compatible = "stericsson,ab8500-ponkey", },
|
|
{}
|
|
};
|
|
#endif
|
|
|
|
static struct platform_driver ab8500_ponkey_driver = {
|
|
.driver = {
|
|
.name = "ab8500-poweron-key",
|
|
.owner = THIS_MODULE,
|
|
.of_match_table = of_match_ptr(ab8500_ponkey_match),
|
|
},
|
|
.probe = ab8500_ponkey_probe,
|
|
.remove = __devexit_p(ab8500_ponkey_remove),
|
|
};
|
|
module_platform_driver(ab8500_ponkey_driver);
|
|
|
|
MODULE_LICENSE("GPL v2");
|
|
MODULE_AUTHOR("Sundar Iyer <sundar.iyer@stericsson.com>");
|
|
MODULE_DESCRIPTION("ST-Ericsson AB8500 Power-ON(Pon) Key driver");
|