mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 01:00:52 +07:00
5fa3ea047a
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
243 lines
6.0 KiB
C
243 lines
6.0 KiB
C
#ifndef MY_ABC_HERE
|
|
#define MY_ABC_HERE
|
|
#endif
|
|
/*
|
|
* Copyright (C) 2011 Google, Inc.
|
|
*
|
|
* This software is licensed under the terms of the GNU General Public
|
|
* License version 2, as published by the Free Software Foundation, and
|
|
* may be copied, distributed, and modified under those terms.
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/device.h>
|
|
#include <linux/module.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/rfkill.h>
|
|
#if defined(MY_DEF_HERE)
|
|
#include <linux/gpio/consumer.h>
|
|
#else /* MY_DEF_HERE */
|
|
#include <linux/gpio.h>
|
|
#endif /* MY_DEF_HERE */
|
|
#include <linux/ioport.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_device.h>
|
|
#if defined(MY_DEF_HERE)
|
|
#else /* MY_DEF_HERE */
|
|
#include <linux/of_gpio.h>
|
|
#endif /* MY_DEF_HERE */
|
|
#include <linux/of_irq.h>
|
|
#if defined(MY_DEF_HERE)
|
|
#include <linux/of_address.h>
|
|
#include <soc/realtek/rtk_chip.h>
|
|
#include <linux/mfd/syscon.h>
|
|
#include <linux/regmap.h>
|
|
|
|
#define LSADC0_PAD0 0x900
|
|
#define ISO_PFUNC21 0x74
|
|
#endif /* MY_DEF_HERE */
|
|
|
|
static struct rfkill *bt_rfk;
|
|
static const char bt_name[] = "bluetooth";
|
|
#if defined(MY_DEF_HERE)
|
|
static struct gpio_desc *bt_reset;
|
|
|
|
static const struct soc_device_attribute rtk_soc_stark[] = {
|
|
{
|
|
.family = "Realtek Stark",
|
|
},
|
|
{
|
|
/* empty */
|
|
}
|
|
};
|
|
#else /* MY_DEF_HERE */
|
|
static int bt_reset;
|
|
#endif /* MY_DEF_HERE */
|
|
|
|
static int bluetooth_set_power(void *data, bool blocked)
|
|
{
|
|
pr_info("%s: block=%d\n", __func__, blocked);
|
|
|
|
#if defined(MY_DEF_HERE)
|
|
if (!blocked)
|
|
gpiod_direction_output(bt_reset, 1);
|
|
else
|
|
gpiod_direction_output(bt_reset, 0);
|
|
#else /* MY_DEF_HERE */
|
|
if (!blocked)
|
|
gpio_direction_output(bt_reset, 1);
|
|
else
|
|
gpio_direction_output(bt_reset, 0);
|
|
#endif /* MY_DEF_HERE */
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct rfkill_ops rfkill_bluetooth_ops = {
|
|
.set_block = bluetooth_set_power,
|
|
};
|
|
|
|
#if defined(MY_DEF_HERE)
|
|
static void rfkill_gpio_init(struct device *dev)
|
|
#else /* MY_DEF_HERE */
|
|
static void rfkill_gpio_init(struct device_node *rtk119x_bt_node)
|
|
#endif /* MY_DEF_HERE */
|
|
{
|
|
/*initial gpios*/
|
|
/* get gpio number from device tree*/
|
|
#if defined(MY_DEF_HERE)
|
|
bt_reset = devm_gpiod_get(dev, "rfkill",
|
|
GPIOD_OUT_LOW);
|
|
if (IS_ERR(bt_reset)) {
|
|
pr_err("[%s ] could not request gpio, %d\n",
|
|
__func__, desc_to_gpio(bt_reset));
|
|
}
|
|
#else /* MY_DEF_HERE */
|
|
bt_reset = of_get_gpio_flags(rtk119x_bt_node, 0, NULL);
|
|
|
|
if (bt_reset < 0)
|
|
pr_err("[%s ] could not get gpio from of\n", __func__);
|
|
|
|
if (!gpio_is_valid(bt_reset)) /*check whether gpio number is valid*/
|
|
pr_err("[%s ] gpio %d is not valid\n", __func__, bt_reset);
|
|
|
|
if (gpio_request(bt_reset, rtk119x_bt_node->name)) /*request gpio*/
|
|
pr_err("[%s ] could not request gpio, %d\n",
|
|
__func__, bt_reset);
|
|
#endif /* MY_DEF_HERE */
|
|
}
|
|
|
|
static void rfkill_gpio_deinit(void)
|
|
{
|
|
#if defined(MY_DEF_HERE)
|
|
gpiod_put(bt_reset);
|
|
#else /* MY_DEF_HERE */
|
|
gpio_free(bt_reset);
|
|
#endif /* MY_DEF_HERE */
|
|
}
|
|
|
|
static int rfkill_bluetooth_probe(struct platform_device *pdev)
|
|
{
|
|
|
|
int rc = 0;
|
|
bool default_state = true;
|
|
#if defined(MY_DEF_HERE)
|
|
struct device *rtk119x_bt_dev;
|
|
|
|
rtk119x_bt_dev = &pdev->dev;
|
|
#else /* MY_DEF_HERE */
|
|
struct device_node *rtk119x_bt_node;
|
|
rtk119x_bt_node = pdev->dev.of_node;
|
|
#endif /* MY_DEF_HERE */
|
|
|
|
pr_info("-->%s\n", __func__);
|
|
|
|
#if defined(MY_DEF_HERE)
|
|
if(soc_device_match(rtk_soc_stark)) {
|
|
struct regmap *iso_base;
|
|
struct regmap *pad_base;
|
|
struct device_node *rtk119x_bt_node = NULL;
|
|
u32 iso_tmp=0, pad_tmp=0;
|
|
|
|
rtk119x_bt_node = pdev->dev.of_node;
|
|
iso_base = syscon_regmap_lookup_by_phandle(rtk119x_bt_node, "realtek,iso");
|
|
pad_base = syscon_regmap_lookup_by_phandle(rtk119x_bt_node, "realtek,pinctrl");
|
|
|
|
if (IS_ERR_OR_NULL(iso_base) || IS_ERR_OR_NULL(pad_base)) {
|
|
printk(KERN_ERR "iso_base = NULL or pad_base = NULL !!!\n");
|
|
return -ENOMEM;
|
|
}
|
|
|
|
regmap_read(iso_base, LSADC0_PAD0, &iso_tmp);
|
|
|
|
if((iso_tmp&0xff)>=0x94) {
|
|
pad_tmp = BIT(11)|BIT(16)|BIT(21)|BIT(26);
|
|
regmap_update_bits_base(pad_base, ISO_PFUNC21,
|
|
pad_tmp, pad_tmp, NULL, false, true);
|
|
}
|
|
else {
|
|
pad_tmp = BIT(11)|BIT(16)|BIT(21)|BIT(26);
|
|
regmap_update_bits_base(pad_base, ISO_PFUNC21,
|
|
pad_tmp, 0, NULL, false, true);
|
|
}
|
|
}
|
|
|
|
#endif /* MY_DEF_HERE */
|
|
bt_rfk = rfkill_alloc(bt_name, &pdev->dev, RFKILL_TYPE_BLUETOOTH,
|
|
&rfkill_bluetooth_ops, NULL);
|
|
if (!bt_rfk) {
|
|
rc = -ENOMEM;
|
|
goto err_rfkill_alloc;
|
|
}
|
|
#if defined(MY_DEF_HERE)
|
|
rfkill_gpio_init(rtk119x_bt_dev);
|
|
#else /* MY_DEF_HERE */
|
|
rfkill_gpio_init(rtk119x_bt_node);
|
|
#endif /* MY_DEF_HERE */
|
|
/* userspace cannot take exclusive control */
|
|
rfkill_init_sw_state(bt_rfk, false);
|
|
rc = rfkill_register(bt_rfk);
|
|
if (rc)
|
|
goto err_rfkill_reg;
|
|
|
|
rfkill_set_sw_state(bt_rfk, true);
|
|
bluetooth_set_power(NULL, default_state);
|
|
|
|
pr_info("<--%s\n", __func__);
|
|
return 0;
|
|
|
|
err_rfkill_reg:
|
|
rfkill_destroy(bt_rfk);
|
|
err_rfkill_alloc:
|
|
return rc;
|
|
}
|
|
|
|
static int rfkill_bluetooth_remove(struct platform_device *dev)
|
|
{
|
|
pr_info("-->%s\n", __func__);
|
|
rfkill_gpio_deinit();
|
|
rfkill_unregister(bt_rfk);
|
|
rfkill_destroy(bt_rfk);
|
|
pr_info("<--%s\n", __func__);
|
|
return 0;
|
|
}
|
|
static const struct of_device_id rtk119x_bt_ids[] = {
|
|
{ .compatible = "realtek,rfkill" },
|
|
{ /* Sentinel */ },
|
|
};
|
|
static struct platform_driver rfkill_bluetooth_driver = {
|
|
.probe = rfkill_bluetooth_probe,
|
|
.remove = rfkill_bluetooth_remove,
|
|
.driver = {
|
|
.name = "rfkill",
|
|
.owner = THIS_MODULE,
|
|
.of_match_table = rtk119x_bt_ids,
|
|
},
|
|
};
|
|
|
|
static int __init rfkill_bluetooth_init(void)
|
|
{
|
|
pr_info("-->%s\n", __func__);
|
|
return platform_driver_register(&rfkill_bluetooth_driver);
|
|
}
|
|
|
|
static void __exit rfkill_bluetooth_exit(void)
|
|
{
|
|
pr_info("-->%s\n", __func__);
|
|
platform_driver_unregister(&rfkill_bluetooth_driver);
|
|
}
|
|
|
|
late_initcall(rfkill_bluetooth_init);
|
|
module_exit(rfkill_bluetooth_exit);
|
|
MODULE_DESCRIPTION("bluetooth rfkill");
|
|
MODULE_AUTHOR("rs <wn@realsil.com.cn>");
|
|
MODULE_LICENSE("GPL");
|
|
|