Home
last modified time | relevance | path

Searched refs:ssd130x (Results 1 – 7 of 7) sorted by relevance

/openbmc/linux/drivers/gpu/drm/solomon/
H A Dssd130x.c207 if (col_start == ssd130x->col_start && col_end == ssd130x->col_end) in ssd130x_set_col_range()
276 ssd130x->pwm->pwm, pwm_get_period(ssd130x->pwm)); in ssd130x_pwm_enable()
369 if (ssd130x->area_color_enable || ssd130x->low_power) { in ssd130x_init()
566 ret = ssd130x_set_col_range(ssd130x, ssd130x->col_offset, width); in ssd130x_clear_screen()
929 ret = ssd130x_write_cmd(ssd130x, 1, ssd130x->contrast); in ssd130x_update_bl()
945 ssd130x->width = ssd130x->device_info->default_width; in ssd130x_parse_properties()
948 ssd130x->height = ssd130x->device_info->default_height; in ssd130x_parse_properties()
979 ssd130x->vcomh = ssd130x->device_info->default_vcomh; in ssd130x_parse_properties()
983 ssd130x->dclk_div = ssd130x->device_info->default_dclk_div; in ssd130x_parse_properties()
985 ssd130x->dclk_frq = ssd130x->device_info->default_dclk_frq; in ssd130x_parse_properties()
[all …]
H A Dssd130x-i2c.c26 struct ssd130x_device *ssd130x; in ssd130x_i2c_probe() local
33 ssd130x = ssd130x_probe(&client->dev, regmap); in ssd130x_i2c_probe()
34 if (IS_ERR(ssd130x)) in ssd130x_i2c_probe()
35 return PTR_ERR(ssd130x); in ssd130x_i2c_probe()
37 i2c_set_clientdata(client, ssd130x); in ssd130x_i2c_probe()
44 struct ssd130x_device *ssd130x = i2c_get_clientdata(client); in ssd130x_i2c_remove() local
46 ssd130x_remove(ssd130x); in ssd130x_i2c_remove()
51 struct ssd130x_device *ssd130x = i2c_get_clientdata(client); in ssd130x_i2c_shutdown() local
53 ssd130x_shutdown(ssd130x); in ssd130x_i2c_shutdown()
H A Dssd130x-spi.c65 struct ssd130x_device *ssd130x; in ssd130x_spi_probe() local
87 ssd130x = ssd130x_probe(dev, regmap); in ssd130x_spi_probe()
88 if (IS_ERR(ssd130x)) in ssd130x_spi_probe()
89 return PTR_ERR(ssd130x); in ssd130x_spi_probe()
91 spi_set_drvdata(spi, ssd130x); in ssd130x_spi_probe()
98 struct ssd130x_device *ssd130x = spi_get_drvdata(spi); in ssd130x_spi_remove() local
100 ssd130x_remove(ssd130x); in ssd130x_spi_remove()
105 struct ssd130x_device *ssd130x = spi_get_drvdata(spi); in ssd130x_spi_shutdown() local
107 ssd130x_shutdown(ssd130x); in ssd130x_spi_shutdown()
H A DMakefile1 obj-$(CONFIG_DRM_SSD130X) += ssd130x.o
2 obj-$(CONFIG_DRM_SSD130X_I2C) += ssd130x-i2c.o
3 obj-$(CONFIG_DRM_SSD130X_SPI) += ssd130x-spi.o
H A DKconfig12 If M is selected the module will be called ssd130x.
22 If M is selected the module will be called ssd130x-i2c.
31 If M is selected the module will be called ssd130x-spi.
H A Dssd130x.h97 void ssd130x_remove(struct ssd130x_device *ssd130x);
98 void ssd130x_shutdown(struct ssd130x_device *ssd130x);
/openbmc/linux/
H A DMAINTAINERS6806 F: drivers/gpu/drm/solomon/ssd130x*