1
0
Fork 0

MLK-15001-20 phy: Add Mixel LVDS PHY support

This patch adds Mixel LVDS PHY support.
This PHY supports two LVDS channels.

Signed-off-by: Liu Ying <victor.liu@nxp.com>
pull/10/head
Liu Ying 2017-04-24 13:59:40 +08:00 committed by Jason Liu
parent 7b88bfbb0a
commit 37f8685843
5 changed files with 381 additions and 0 deletions

View File

@ -0,0 +1,39 @@
Mixel LVDS PHY
This LVDS PHY supports two LVDS channels.
Required properties:
- compatible: must be "mixel,lvds-phy".
- reg: offset and length of the register block.
- #address-cells: number of address cells for the LVDS channel subnodes, must
be <1>.
- #size-cells: number of size cells for the LVDS channel subnodes, must be <0>.
- clocks: clock phandle and specifier pair.
- clock-names: string, clock input name, must be "phy".
- power-domains: phandle pointing to power domain.
The LVDS PHY device tree node should have the subnodes corresponding to the two
LVDS channels. These subnodes must contain the following properties:
- reg: the PHY ID.
- #phy-cells: see phy-bindings.txt in the same directory, must be <0>.
Example:
ldb1_phy: ldb_phy@56241000 {
#address-cells = <1>;
#size-cells = <0>;
compatible = "mixel,lvds-phy";
reg = <0x0 0x56241000 0x0 0x100>;
clocks = <&clk IMX8QM_LVDS0_PHY_CLK>;
clock-names = "phy";
power-domains = <&pd_lvds0>;
ldb1_phy1: port@0 {
reg = <0>;
#phy-cells = <0>;
};
ldb1_phy2: port@1 {
reg = <1>;
#phy-cells = <0>;
};
};

View File

@ -40,6 +40,12 @@ config PHY_XGENE
help
This option enables support for APM X-Gene SoC multi-purpose PHY.
config PHY_MIXEL_LVDS
bool
depends on OF
select GENERIC_PHY
default ARCH_FSL_IMX8QM
source "drivers/phy/allwinner/Kconfig"
source "drivers/phy/amlogic/Kconfig"
source "drivers/phy/broadcom/Kconfig"

View File

@ -7,6 +7,7 @@ obj-$(CONFIG_GENERIC_PHY) += phy-core.o
obj-$(CONFIG_PHY_LPC18XX_USB_OTG) += phy-lpc18xx-usb-otg.o
obj-$(CONFIG_PHY_XGENE) += phy-xgene.o
obj-$(CONFIG_PHY_PISTACHIO_USB) += phy-pistachio-usb.o
obj-$(CONFIG_PHY_MIXEL_LVDS) += phy-mixel-lvds.o
obj-$(CONFIG_ARCH_SUNXI) += allwinner/
obj-$(CONFIG_ARCH_MESON) += amlogic/
obj-$(CONFIG_LANTIQ) += lantiq/

View File

@ -0,0 +1,299 @@
/*
* Copyright 2017 NXP
*
* 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.
*
* 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/clk.h>
#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/phy/phy.h>
#include <linux/phy/phy-mixel-lvds.h>
#include <linux/platform_device.h>
#define SET 0x4
#define CLR 0x8
#define TOG 0xc
#define PHY_CTRL 0x0
#define M(n) (((n) & 0x3) << 17)
#define M_MASK 0x60000
#define CCM(n) (((n) & 0x7) << 14)
#define CCM_MASK 0x1c000
#define CA(n) (((n) & 0x7) << 11)
#define CA_MASK 0x3800
#define TST(n) (((n) & 0x3f) << 5)
#define TST_MASK 0x7e0
#define CH_EN(id) BIT(3 + (id))
#define NB BIT(2)
#define RFB BIT(1)
#define PD BIT(0)
#define PHY_STATUS 0x10
#define LOCK BIT(0)
#define PHY_SS_CTRL 0x20
#define CH_HSYNC_M(id) BIT(0 + ((id) * 2))
#define CH_VSYNC_M(id) BIT(1 + ((id) * 2))
#define CH_PHSYNC(id) BIT(0 + ((id) * 2))
#define CH_PVSYNC(id) BIT(1 + ((id) * 2))
struct mixel_lvds_phy {
struct phy *phy;
unsigned int id;
};
struct mixel_lvds_phy_priv {
struct device *dev;
void __iomem *base;
struct mutex lock;
struct clk *phy_clk;
struct mixel_lvds_phy *phys[2];
};
static inline u32 phy_read(struct phy *phy, unsigned int reg)
{
struct mixel_lvds_phy_priv *priv = dev_get_drvdata(phy->dev.parent);
return readl(priv->base + reg);
}
static inline void phy_write(struct phy *phy, u32 value, unsigned int reg)
{
struct mixel_lvds_phy_priv *priv = dev_get_drvdata(phy->dev.parent);
writel(value, priv->base + reg);
}
void mixel_phy_lvds_set_phy_speed(struct phy *phy, unsigned long phy_clk_rate)
{
struct mixel_lvds_phy_priv *priv = dev_get_drvdata(phy->dev.parent);
u32 val;
/* assuming NB is zero - 7bits per channel */
clk_prepare_enable(priv->phy_clk);
mutex_lock(&priv->lock);
val = phy_read(phy, PHY_CTRL);
val &= ~M_MASK;
if (phy_clk_rate < 44000000)
val |= M(0x2);
else if (phy_clk_rate < 90000000)
val |= M(0x1);
else
val |= M(0x0);
phy_write(phy, val, PHY_CTRL);
mutex_unlock(&priv->lock);
clk_disable_unprepare(priv->phy_clk);
clk_set_rate(priv->phy_clk, phy_clk_rate);
}
EXPORT_SYMBOL_GPL(mixel_phy_lvds_set_phy_speed);
void mixel_phy_lvds_set_hsync_pol(struct phy *phy, bool active_high)
{
struct mixel_lvds_phy_priv *priv = dev_get_drvdata(phy->dev.parent);
struct mixel_lvds_phy *lvds_phy = phy_get_drvdata(phy);
unsigned int id = lvds_phy->id;
u32 val;
clk_prepare_enable(priv->phy_clk);
mutex_lock(&priv->lock);
val = phy_read(phy, PHY_SS_CTRL);
val &= ~CH_HSYNC_M(id);
if (active_high)
val |= CH_PHSYNC(id);
phy_write(phy, val, PHY_SS_CTRL);
mutex_unlock(&priv->lock);
clk_disable_unprepare(priv->phy_clk);
}
EXPORT_SYMBOL_GPL(mixel_phy_lvds_set_hsync_pol);
void mixel_phy_lvds_set_vsync_pol(struct phy *phy, bool active_high)
{
struct mixel_lvds_phy_priv *priv = dev_get_drvdata(phy->dev.parent);
struct mixel_lvds_phy *lvds_phy = phy_get_drvdata(phy);
unsigned int id = lvds_phy->id;
u32 val;
clk_prepare_enable(priv->phy_clk);
mutex_lock(&priv->lock);
val = phy_read(phy, PHY_SS_CTRL);
val &= ~CH_VSYNC_M(id);
if (active_high)
val |= CH_PVSYNC(id);
phy_write(phy, val, PHY_SS_CTRL);
mutex_unlock(&priv->lock);
clk_disable_unprepare(priv->phy_clk);
}
EXPORT_SYMBOL_GPL(mixel_phy_lvds_set_vsync_pol);
static int mixel_lvds_phy_init(struct phy *phy)
{
struct mixel_lvds_phy_priv *priv = dev_get_drvdata(phy->dev.parent);
u32 val;
clk_prepare_enable(priv->phy_clk);
mutex_lock(&priv->lock);
val = phy_read(phy, PHY_CTRL);
val &= ~(M_MASK | CCM_MASK | CA_MASK | TST_MASK | NB | PD);
val |= (M(0x0) | CCM(0x5) | CA(0x4) | TST(0x25) | RFB);
phy_write(phy, val, PHY_CTRL);
mutex_unlock(&priv->lock);
clk_disable_unprepare(priv->phy_clk);
return 0;
}
static int mixel_lvds_phy_power_on(struct phy *phy)
{
struct mixel_lvds_phy_priv *priv = dev_get_drvdata(phy->dev.parent);
struct mixel_lvds_phy *lvds_phy = phy_get_drvdata(phy);
unsigned int id = lvds_phy->id;
clk_prepare_enable(priv->phy_clk);
mutex_lock(&priv->lock);
phy_write(phy, CH_EN(id), PHY_CTRL + SET);
mutex_unlock(&priv->lock);
return 0;
}
static int mixel_lvds_phy_power_off(struct phy *phy)
{
struct mixel_lvds_phy_priv *priv = dev_get_drvdata(phy->dev.parent);
struct mixel_lvds_phy *lvds_phy = phy_get_drvdata(phy);
unsigned int id = lvds_phy->id;
mutex_lock(&priv->lock);
phy_write(phy, CH_EN(id), PHY_CTRL + CLR);
mutex_unlock(&priv->lock);
clk_disable_unprepare(priv->phy_clk);
return 0;
}
static const struct phy_ops mixel_lvds_phy_ops = {
.init = mixel_lvds_phy_init,
.power_on = mixel_lvds_phy_power_on,
.power_off = mixel_lvds_phy_power_off,
.owner = THIS_MODULE,
};
static int mixel_lvds_phy_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
struct device_node *np = dev->of_node;
struct device_node *child;
struct resource *res;
struct phy_provider *phy_provider;
struct mixel_lvds_phy_priv *priv;
struct mixel_lvds_phy *lvds_phy;
struct phy *phy;
u32 phy_id;
int ret;
if (!np)
return -ENODEV;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res)
return -ENODEV;
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
if (!priv)
return -ENOMEM;
priv->base = devm_ioremap(dev, res->start, SZ_256);
if (!priv->base)
return -ENOMEM;
priv->dev = dev;
priv->phy_clk = devm_clk_get(dev, "phy");
if (IS_ERR(priv->phy_clk)) {
dev_err(dev, "cannot get phy clock\n");
return PTR_ERR(priv->phy_clk);
}
mutex_init(&priv->lock);
dev_set_drvdata(dev, priv);
for_each_available_child_of_node(np, child) {
if (of_property_read_u32(child, "reg", &phy_id)) {
dev_err(dev, "missing reg property in node %s\n",
child->name);
ret = -EINVAL;
goto put_child;
}
if (phy_id >= ARRAY_SIZE(priv->phys)) {
dev_err(dev, "invalid reg in node %s\n", child->name);
ret = -EINVAL;
goto put_child;
}
if (priv->phys[phy_id]) {
dev_err(dev, "duplicated phy id: %u\n", phy_id);
ret = -EINVAL;
goto put_child;
}
lvds_phy = devm_kzalloc(dev, sizeof(*lvds_phy), GFP_KERNEL);
if (!lvds_phy) {
ret = -ENOMEM;
goto put_child;
}
phy = devm_phy_create(dev, child, &mixel_lvds_phy_ops);
if (IS_ERR(phy)) {
dev_err(dev, "failed to create phy\n");
ret = PTR_ERR(phy);
goto put_child;
}
lvds_phy->phy = phy;
lvds_phy->id = phy_id;
priv->phys[phy_id] = lvds_phy;
phy_set_drvdata(phy, lvds_phy);
}
phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate);
return PTR_ERR_OR_ZERO(phy_provider);
put_child:
of_node_put(child);
return ret;
}
static const struct of_device_id mixel_lvds_phy_of_match[] = {
{ .compatible = "mixel,lvds-phy" },
{}
};
MODULE_DEVICE_TABLE(of, mixel_lvds_phy_of_match);
static struct platform_driver mixel_lvds_phy_driver = {
.probe = mixel_lvds_phy_probe,
.driver = {
.name = "mixel-lvds-phy",
.of_match_table = mixel_lvds_phy_of_match,
}
};
module_platform_driver(mixel_lvds_phy_driver);
MODULE_AUTHOR("NXP Semiconductor");
MODULE_DESCRIPTION("Mixel LVDS PHY driver");
MODULE_LICENSE("GPL v2");

View File

@ -0,0 +1,36 @@
/*
* Copyright 2017 NXP
*
* 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.
*
* 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 PHY_MIXEL_LVDS_H_
#define PHY_MIXEL_LVDS_H_
#include "phy.h"
#if IS_ENABLED(CONFIG_PHY_MIXEL_LVDS)
void mixel_phy_lvds_set_phy_speed(struct phy *phy, unsigned long phy_clk_rate);
void mixel_phy_lvds_set_hsync_pol(struct phy *phy, bool active_high);
void mixel_phy_lvds_set_vsync_pol(struct phy *phy, bool active_high);
#else
void mixel_phy_lvds_set_phy_speed(struct phy *phy, unsigned long phy_clk_rate)
{
}
void mixel_phy_lvds_set_hsync_pol(struct phy *phy, bool active_high)
{
}
void mixel_phy_lvds_set_vsync_pol(struct phy *phy, bool active_high)
{
}
#endif
#endif /* PHY_MIXEL_LVDS_H_ */