Commit 8b2d3aee authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Greg Kroah-Hartman

fbtft: Make use of device property API

Make use of device property API in this driver so that both OF based
system and ACPI based system can use this driver.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20191120095716.26628-4-andriy.shevchenko@linux.intel.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2494fd4c
...@@ -22,8 +22,9 @@ ...@@ -22,8 +22,9 @@
#include <linux/uaccess.h> #include <linux/uaccess.h>
#include <linux/backlight.h> #include <linux/backlight.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/property.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
#include <linux/of.h>
#include <video/mipi_display.h> #include <video/mipi_display.h>
#include "fbtft.h" #include "fbtft.h"
...@@ -894,44 +895,53 @@ int fbtft_unregister_framebuffer(struct fb_info *fb_info) ...@@ -894,44 +895,53 @@ int fbtft_unregister_framebuffer(struct fb_info *fb_info)
EXPORT_SYMBOL(fbtft_unregister_framebuffer); EXPORT_SYMBOL(fbtft_unregister_framebuffer);
/** /**
* fbtft_init_display_dt() - Device Tree init_display() function * fbtft_init_display_from_property() - Device Tree init_display() function
* @par: Driver data * @par: Driver data
* *
* Return: 0 if successful, negative if error * Return: 0 if successful, negative if error
*/ */
static int fbtft_init_display_dt(struct fbtft_par *par) static int fbtft_init_display_from_property(struct fbtft_par *par)
{ {
struct device_node *node = par->info->device->of_node; struct device *dev = par->info->device;
struct property *prop; int buf[64], count, index, i, j, ret;
const __be32 *p; u32 *values;
u32 val; u32 val;
int buf[64], i, j;
if (!node) count = device_property_count_u32(dev, "init");
if (count < 0)
return count;
if (count == 0)
return -EINVAL; return -EINVAL;
prop = of_find_property(node, "init", NULL); values = kmalloc_array(count, sizeof(*values), GFP_KERNEL);
p = of_prop_next_u32(prop, NULL, &val); if (!values)
if (!p) return -ENOMEM;
return -EINVAL;
ret = device_property_read_u32_array(dev, "init", values, count);
if (ret)
goto out_free;
par->fbtftops.reset(par); par->fbtftops.reset(par);
if (par->gpio.cs) if (par->gpio.cs)
gpiod_set_value(par->gpio.cs, 0); /* Activate chip */ gpiod_set_value(par->gpio.cs, 0); /* Activate chip */
while (p) { index = -1;
while (index < count) {
val = values[++index];
if (val & FBTFT_OF_INIT_CMD) { if (val & FBTFT_OF_INIT_CMD) {
val &= 0xFFFF; val &= 0xFFFF;
i = 0; i = 0;
while (p && !(val & 0xFFFF0000)) { while ((index < count) && !(val & 0xFFFF0000)) {
if (i > 63) { if (i > 63) {
dev_err(par->info->device, dev_err(dev,
"%s: Maximum register values exceeded\n", "%s: Maximum register values exceeded\n",
__func__); __func__);
return -EINVAL; ret = -EINVAL;
goto out_free;
} }
buf[i++] = val; buf[i++] = val;
p = of_prop_next_u32(prop, p, &val); val = values[++index];
} }
/* make debug message */ /* make debug message */
fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, fbtft_par_dbg(DEBUG_INIT_DISPLAY, par,
...@@ -961,15 +971,17 @@ static int fbtft_init_display_dt(struct fbtft_par *par) ...@@ -961,15 +971,17 @@ static int fbtft_init_display_dt(struct fbtft_par *par)
fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, fbtft_par_dbg(DEBUG_INIT_DISPLAY, par,
"init: msleep(%u)\n", val & 0xFFFF); "init: msleep(%u)\n", val & 0xFFFF);
msleep(val & 0xFFFF); msleep(val & 0xFFFF);
p = of_prop_next_u32(prop, p, &val); val = values[++index];
} else { } else {
dev_err(par->info->device, "illegal init value 0x%X\n", dev_err(dev, "illegal init value 0x%X\n", val);
val); ret = -EINVAL;
return -EINVAL; goto out_free;
} }
} }
return 0; out_free:
kfree(values);
return ret;
} }
/** /**
...@@ -1132,25 +1144,24 @@ static int fbtft_verify_gpios(struct fbtft_par *par) ...@@ -1132,25 +1144,24 @@ static int fbtft_verify_gpios(struct fbtft_par *par)
} }
/* returns 0 if the property is not present */ /* returns 0 if the property is not present */
static u32 fbtft_of_value(struct device_node *node, const char *propname) static u32 fbtft_property_value(struct device *dev, const char *propname)
{ {
int ret; int ret;
u32 val = 0; u32 val = 0;
ret = of_property_read_u32(node, propname, &val); ret = device_property_read_u32(dev, propname, &val);
if (ret == 0) if (ret == 0)
pr_info("%s: %s = %u\n", __func__, propname, val); dev_info(dev, "%s: %s = %u\n", __func__, propname, val);
return val; return val;
} }
static struct fbtft_platform_data *fbtft_probe_dt(struct device *dev) static struct fbtft_platform_data *fbtft_properties_read(struct device *dev)
{ {
struct device_node *node = dev->of_node;
struct fbtft_platform_data *pdata; struct fbtft_platform_data *pdata;
if (!node) { if (!dev_fwnode(dev)) {
dev_err(dev, "Missing platform data or DT\n"); dev_err(dev, "Missing platform data or properties\n");
return ERR_PTR(-EINVAL); return ERR_PTR(-EINVAL);
} }
...@@ -1158,24 +1169,24 @@ static struct fbtft_platform_data *fbtft_probe_dt(struct device *dev) ...@@ -1158,24 +1169,24 @@ static struct fbtft_platform_data *fbtft_probe_dt(struct device *dev)
if (!pdata) if (!pdata)
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
pdata->display.width = fbtft_of_value(node, "width"); pdata->display.width = fbtft_property_value(dev, "width");
pdata->display.height = fbtft_of_value(node, "height"); pdata->display.height = fbtft_property_value(dev, "height");
pdata->display.regwidth = fbtft_of_value(node, "regwidth"); pdata->display.regwidth = fbtft_property_value(dev, "regwidth");
pdata->display.buswidth = fbtft_of_value(node, "buswidth"); pdata->display.buswidth = fbtft_property_value(dev, "buswidth");
pdata->display.backlight = fbtft_of_value(node, "backlight"); pdata->display.backlight = fbtft_property_value(dev, "backlight");
pdata->display.bpp = fbtft_of_value(node, "bpp"); pdata->display.bpp = fbtft_property_value(dev, "bpp");
pdata->display.debug = fbtft_of_value(node, "debug"); pdata->display.debug = fbtft_property_value(dev, "debug");
pdata->rotate = fbtft_of_value(node, "rotate"); pdata->rotate = fbtft_property_value(dev, "rotate");
pdata->bgr = of_property_read_bool(node, "bgr"); pdata->bgr = device_property_read_bool(dev, "bgr");
pdata->fps = fbtft_of_value(node, "fps"); pdata->fps = fbtft_property_value(dev, "fps");
pdata->txbuflen = fbtft_of_value(node, "txbuflen"); pdata->txbuflen = fbtft_property_value(dev, "txbuflen");
pdata->startbyte = fbtft_of_value(node, "startbyte"); pdata->startbyte = fbtft_property_value(dev, "startbyte");
of_property_read_string(node, "gamma", (const char **)&pdata->gamma); device_property_read_string(dev, "gamma", (const char **)&pdata->gamma);
if (of_find_property(node, "led-gpios", NULL)) if (device_property_present(dev, "led-gpios"))
pdata->display.backlight = 1; pdata->display.backlight = 1;
if (of_find_property(node, "init", NULL)) if (device_property_present(dev, "init"))
pdata->display.fbtftops.init_display = fbtft_init_display_dt; pdata->display.fbtftops.init_display = fbtft_init_display_from_property;
pdata->display.fbtftops.request_gpios = fbtft_request_gpios; pdata->display.fbtftops.request_gpios = fbtft_request_gpios;
return pdata; return pdata;
...@@ -1213,7 +1224,7 @@ int fbtft_probe_common(struct fbtft_display *display, ...@@ -1213,7 +1224,7 @@ int fbtft_probe_common(struct fbtft_display *display,
pdata = dev->platform_data; pdata = dev->platform_data;
if (!pdata) { if (!pdata) {
pdata = fbtft_probe_dt(dev); pdata = fbtft_properties_read(dev);
if (IS_ERR(pdata)) if (IS_ERR(pdata))
return PTR_ERR(pdata); return PTR_ERR(pdata);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment