~tobetter/odroid-image/+git/linux:v3.10.z

Last commit made on 2013-08-05
Get this branch:
git clone -b v3.10.z https://git.launchpad.net/~tobetter/odroid-image/+git/linux

Branch merges

Branch information

Name:
v3.10.z
Repository:
lp:~tobetter/odroid-image/+git/linux

Recent commits

3aad211... by Dongjin Kim

ARM: Exynos4: add odroidx_defconfig

Signed-off-by: Dongjin Kim <email address hidden>

a063901... by Julius Werner <email address hidden>

usb: misc: usb3503: Remove 100ms sleep on reset, conform to data sheet

The usb3503 driver sleeps a flat 100ms when resetting the chip, with a
comment about waiting for the reference clock. This seems to be a
board-specific detail that should not hold up boot across all platforms.
This patch reduces the sleep to the 4ms initialization delay that the
chip itself actually requires (as per its data sheet). If certain boards
require more time to set up the reference clock, they should change this
through local patches or add a proper, configurable synchronization
mechanism.

Signed-off-by: Julius Werner <email address hidden>

7fb5694... by Julius Werner <email address hidden>

usb: misc: usb3503: Fix up whitespace

Remove an erroneous tab that should be a space.

Signed-off-by: Julius Werner <email address hidden>

6ad3add... by Dongjin Kim

usb: misc: usb3503: Adding device tree entry 'disabled-ports'

This patch is to add a property 'disabled-ports' representing the unused port
of USB3503. USB3503 can support up to 3 USB host port and each ports can be
controlled to be enabled or disabled. Do not describe this property if all
ports must be enabled.

You can represent the ports to disable in the device tree.

 usb3503@08{
  ...
  disabled-ports = <2 3>;
  ...
 };

Signed-off-by: Dongjin Kim <email address hidden>

4e1a065... by Dongjin Kim

usb: misc: usb3503: Add to select the ports to disable

This patch is to disable the USB ports unconnected to USB3503. In order to
disable the port, 'port_off_mask' must be set.

* Disable PORT1 only
 .port_off_mask = USB3503_OFF_PORT1;

* Disable PORT1 and PORT3 only
 .port_off_mask = USB3503_OFF_PORT1 | USB3503_OFF_PORT3;

* Enables all ports
 .port_off_mask = 0;

Signed-off-by: Dongjin Kim <email address hidden>

839bb49... by Dongjin Kim

usb: phy: samsung: Add support HSIC on Exynos4X12

This patch adds to enable High Speed Inter Chip on Exynos4X12. Both channels
are controlled by usbphy driver based on the patch series of usbphy driver
submitted by Tomasz Figa.

[1] https://patchwork.kernel.org/patch/2576121
[2] https://patchwork.kernel.org/patch/2576131
[3] https://patchwork.kernel.org/patch/2576141
[4] https://patchwork.kernel.org/patch/2576151
[5] https://patchwork.kernel.org/patch/2576161
[6] https://patchwork.kernel.org/patch/2576171

Signed-off-by: Dongjin Kim <email address hidden>
Cc: Tomasz Figa <email address hidden>
Cc: Kyungmin Park <email address hidden>

b9a13bd... by Tomasz Figa <email address hidden>

usb: phy: samsung: Add support for USB 2.0 PHY on Exynos 4x12

This patch adds driver data for Exynos 4x12 USB 2.0 PHY.

Signed-off-by: Tomasz Figa <email address hidden>
Signed-off-by: Kyungmin Park <email address hidden>

44d1fb4... by Tomasz Figa <email address hidden>

usb: phy: samsung: Pass enable/disable callbacks through driver data

To remove unnecessary if statements, this patch introduces phy_enable
and phy_disable callbacks in driver data structure that implement
SoC-specific PHY initialization and deinitialization.

Signed-off-by: Tomasz Figa <email address hidden>
Signed-off-by: Kyungmin Park <email address hidden>

4f1d0b2... by Tomasz Figa <email address hidden>

usb: phy: samsung: Pass set_isolation callback through driver data

This patch extends driver data structure with set_isolation callback,
which allows to remove the need for checking for SoC type in a switch
statement.

Signed-off-by: Tomasz Figa <email address hidden>
Signed-off-by: Kyungmin Park <email address hidden>

69123b8... by Tomasz Figa <email address hidden>

usb: phy: samsung: Consolidate reference clock rate handling

This patch cleans up handling of reference clock rate in Samsung USB PHY
drivers. It is mostly a cosmetic change but improves error handling in
case of failing to get reference clock or invalid clock rate.

Signed-off-by: Tomasz Figa <email address hidden>
Signed-off-by: Kyungmin Park <email address hidden>