-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 274035 b: refs/heads/master c: c40e7e0 h: refs/heads/master i: 274033: 0acab6c 274031: bb2bb8d v: v3
- Loading branch information
Tomasz Stanislawski
authored and
Kukjin Kim
committed
Oct 4, 2011
1 parent
d084ce4
commit ad570de
Showing
14 changed files
with
122 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 22be71ea8bf7e9f907e916bf9f6c2bbea9f42553 | ||
refs/heads/master: c40e7e0d91b799ed5acf79ae16a2521809d03dd5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* Copyright (C) 2011 Samsung Electronics Co., Ltd. | ||
* | ||
* S5P series i2c hdmiphy helper definitions | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
|
||
#ifndef PLAT_S5P_I2C_HDMIPHY_H_ | ||
#define PLAT_S5P_I2C_HDMIPHY_H_ | ||
|
||
#define S5P_I2C_HDMIPHY_BUS_NUM (8) | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* Copyright (C) 2011 Samsung Electronics Co., Ltd. | ||
* | ||
* S5P series i2c hdmiphy helper definitions | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
|
||
#ifndef PLAT_S5P_I2C_HDMIPHY_H_ | ||
#define PLAT_S5P_I2C_HDMIPHY_H_ | ||
|
||
#define S5P_I2C_HDMIPHY_BUS_NUM (3) | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Copyright (c) 2011 Samsung Electronics Co., Ltd. | ||
* http://www.samsung.com/ | ||
* | ||
* S5P series device definition for i2c for hdmiphy device | ||
* | ||
* Based on plat-samsung/dev-i2c7.c | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
|
||
#include <linux/gfp.h> | ||
#include <linux/kernel.h> | ||
#include <linux/string.h> | ||
#include <linux/platform_device.h> | ||
|
||
#include <mach/irqs.h> | ||
#include <mach/map.h> | ||
#include <mach/i2c-hdmiphy.h> | ||
|
||
#include <plat/regs-iic.h> | ||
#include <plat/devs.h> | ||
#include <plat/cpu.h> | ||
#include <plat/iic.h> | ||
|
||
static struct resource s5p_i2c_resource[] = { | ||
[0] = { | ||
.start = S5P_PA_IIC_HDMIPHY, | ||
.end = S5P_PA_IIC_HDMIPHY + SZ_4K - 1, | ||
.flags = IORESOURCE_MEM, | ||
}, | ||
[1] = { | ||
.start = IRQ_IIC_HDMIPHY, | ||
.end = IRQ_IIC_HDMIPHY, | ||
.flags = IORESOURCE_IRQ, | ||
}, | ||
}; | ||
|
||
struct platform_device s5p_device_i2c_hdmiphy = { | ||
.name = "s3c2440-hdmiphy-i2c", | ||
.id = -1, | ||
.num_resources = ARRAY_SIZE(s5p_i2c_resource), | ||
.resource = s5p_i2c_resource, | ||
}; | ||
|
||
void __init s5p_i2c_hdmiphy_set_platdata(struct s3c2410_platform_i2c *pd) | ||
{ | ||
struct s3c2410_platform_i2c *npd; | ||
|
||
if (!pd) { | ||
pd = &default_i2c_data; | ||
pd->bus_num = S5P_I2C_HDMIPHY_BUS_NUM; | ||
} | ||
|
||
npd = s3c_set_platdata(pd, sizeof(struct s3c2410_platform_i2c), | ||
&s5p_device_i2c_hdmiphy); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters