mirror of
https://github.com/torvalds/linux.git
synced 2026-04-21 08:13:56 -04:00
This was done entirely with mindless brute force, using
git grep -l '\<k[vmz]*alloc_objs*(.*, GFP_KERNEL)' |
xargs sed -i 's/\(alloc_objs*(.*\), GFP_KERNEL)/\1)/'
to convert the new alloc_obj() users that had a simple GFP_KERNEL
argument to just drop that argument.
Note that due to the extreme simplicity of the scripting, any slightly
more complex cases spread over multiple lines would not be triggered:
they definitely exist, but this covers the vast bulk of the cases, and
the resulting diff is also then easier to check automatically.
For the same reason the 'flex' versions will be done as a separate
conversion.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
159 lines
3.5 KiB
C
159 lines
3.5 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright © 2006-2007 Intel Corporation
|
|
*
|
|
* Authors:
|
|
* Eric Anholt <eric@anholt.net>
|
|
*/
|
|
|
|
#include <linux/delay.h>
|
|
#include <linux/export.h>
|
|
#include <linux/i2c-algo-bit.h>
|
|
#include <linux/i2c.h>
|
|
|
|
#include "psb_drv.h"
|
|
#include "psb_intel_reg.h"
|
|
|
|
/*
|
|
* Intel GPIO access functions
|
|
*/
|
|
|
|
#define I2C_RISEFALL_TIME 20
|
|
|
|
static int get_clock(void *data)
|
|
{
|
|
struct gma_i2c_chan *chan = data;
|
|
struct drm_device *dev = chan->drm_dev;
|
|
u32 val;
|
|
|
|
val = REG_READ(chan->reg);
|
|
return (val & GPIO_CLOCK_VAL_IN) != 0;
|
|
}
|
|
|
|
static int get_data(void *data)
|
|
{
|
|
struct gma_i2c_chan *chan = data;
|
|
struct drm_device *dev = chan->drm_dev;
|
|
u32 val;
|
|
|
|
val = REG_READ(chan->reg);
|
|
return (val & GPIO_DATA_VAL_IN) != 0;
|
|
}
|
|
|
|
static void set_clock(void *data, int state_high)
|
|
{
|
|
struct gma_i2c_chan *chan = data;
|
|
struct drm_device *dev = chan->drm_dev;
|
|
u32 reserved = 0, clock_bits;
|
|
|
|
/* On most chips, these bits must be preserved in software. */
|
|
reserved =
|
|
REG_READ(chan->reg) & (GPIO_DATA_PULLUP_DISABLE |
|
|
GPIO_CLOCK_PULLUP_DISABLE);
|
|
|
|
if (state_high)
|
|
clock_bits = GPIO_CLOCK_DIR_IN | GPIO_CLOCK_DIR_MASK;
|
|
else
|
|
clock_bits = GPIO_CLOCK_DIR_OUT | GPIO_CLOCK_DIR_MASK |
|
|
GPIO_CLOCK_VAL_MASK;
|
|
REG_WRITE(chan->reg, reserved | clock_bits);
|
|
udelay(I2C_RISEFALL_TIME); /* wait for the line to change state */
|
|
}
|
|
|
|
static void set_data(void *data, int state_high)
|
|
{
|
|
struct gma_i2c_chan *chan = data;
|
|
struct drm_device *dev = chan->drm_dev;
|
|
u32 reserved = 0, data_bits;
|
|
|
|
/* On most chips, these bits must be preserved in software. */
|
|
reserved =
|
|
REG_READ(chan->reg) & (GPIO_DATA_PULLUP_DISABLE |
|
|
GPIO_CLOCK_PULLUP_DISABLE);
|
|
|
|
if (state_high)
|
|
data_bits = GPIO_DATA_DIR_IN | GPIO_DATA_DIR_MASK;
|
|
else
|
|
data_bits =
|
|
GPIO_DATA_DIR_OUT | GPIO_DATA_DIR_MASK |
|
|
GPIO_DATA_VAL_MASK;
|
|
|
|
REG_WRITE(chan->reg, reserved | data_bits);
|
|
udelay(I2C_RISEFALL_TIME); /* wait for the line to change state */
|
|
}
|
|
|
|
/**
|
|
* gma_i2c_create - instantiate an Intel i2c bus using the specified GPIO reg
|
|
* @dev: DRM device
|
|
* @reg: GPIO reg to use
|
|
* @name: name for this bus
|
|
*
|
|
* Creates and registers a new i2c bus with the Linux i2c layer, for use
|
|
* in output probing and control (e.g. DDC or SDVO control functions).
|
|
*
|
|
* Possible values for @reg include:
|
|
* %GPIOA
|
|
* %GPIOB
|
|
* %GPIOC
|
|
* %GPIOD
|
|
* %GPIOE
|
|
* %GPIOF
|
|
* %GPIOG
|
|
* %GPIOH
|
|
* see PRM for details on how these different busses are used.
|
|
*/
|
|
struct gma_i2c_chan *gma_i2c_create(struct drm_device *dev, const u32 reg,
|
|
const char *name)
|
|
{
|
|
struct gma_i2c_chan *chan;
|
|
|
|
chan = kzalloc_obj(struct gma_i2c_chan);
|
|
if (!chan)
|
|
goto out_free;
|
|
|
|
chan->drm_dev = dev;
|
|
chan->reg = reg;
|
|
snprintf(chan->base.name, I2C_NAME_SIZE, "intel drm %s", name);
|
|
chan->base.owner = THIS_MODULE;
|
|
chan->base.algo_data = &chan->algo;
|
|
chan->base.dev.parent = dev->dev;
|
|
chan->algo.setsda = set_data;
|
|
chan->algo.setscl = set_clock;
|
|
chan->algo.getsda = get_data;
|
|
chan->algo.getscl = get_clock;
|
|
chan->algo.udelay = 20;
|
|
chan->algo.timeout = usecs_to_jiffies(2200);
|
|
chan->algo.data = chan;
|
|
|
|
i2c_set_adapdata(&chan->base, chan);
|
|
|
|
if (i2c_bit_add_bus(&chan->base))
|
|
goto out_free;
|
|
|
|
/* JJJ: raise SCL and SDA? */
|
|
set_data(chan, 1);
|
|
set_clock(chan, 1);
|
|
udelay(20);
|
|
|
|
return chan;
|
|
|
|
out_free:
|
|
kfree(chan);
|
|
return NULL;
|
|
}
|
|
|
|
/**
|
|
* gma_i2c_destroy - unregister and free i2c bus resources
|
|
* @chan: channel to free
|
|
*
|
|
* Unregister the adapter from the i2c layer, then free the structure.
|
|
*/
|
|
void gma_i2c_destroy(struct gma_i2c_chan *chan)
|
|
{
|
|
if (!chan)
|
|
return;
|
|
|
|
i2c_del_adapter(&chan->base);
|
|
kfree(chan);
|
|
}
|