Li Peng [Mon, 27 Aug 2012 02:14:04 +0000 (10:14 +0800)]
Update changelog
Li Peng [Mon, 27 Aug 2012 02:10:03 +0000 (10:10 +0800)]
Merge branch 'devel'
Yan Zhang [Wed, 15 Aug 2012 08:37:50 +0000 (16:37 +0800)]
Update video driver to MCG's latest code: 1)Topza support 2)Error conceal 3)Context update & HDMI API 4)Bug fix
Signed-off-by: Yan Zhang <yan.y.zhang@intel.com>
Li Peng [Fri, 17 Aug 2012 06:44:16 +0000 (14:44 +0800)]
Revert " Update video driver to MCG's latest code:"
This reverts commit
4f3cc0332f7ea9be864e4d49d652b80baf28249c.
should first go into devel branch
Yan Zhang [Wed, 15 Aug 2012 08:37:50 +0000 (16:37 +0800)]
Update video driver to MCG's latest code:
1)Topza support
2)Error conceal
3)Context update & HDMI API
4)Bug fix
Yin, Kangkai [Tue, 14 Aug 2012 03:40:45 +0000 (20:40 -0700)]
Revert "Lowmem: port from slp kernel"
This reverts commit
923fb82117ba9baf50aef46d80f675dd12742e8c
Chengwei Yang [Tue, 14 Aug 2012 00:20:06 +0000 (08:20 +0800)]
Lowmem: port from slp kernel
Port lsp lowmem code to PR3, only did a little changes. That is change
rss in task_rss_t to long and use atomic_long_read to get atomic_long_t
value.
Change-Id: I32173900b3866f324ea81d7f47b8984f7ec17ba6
Signed-off-by: Chengwei Yang <chengwei.yang@intel.com>
Li Peng [Mon, 13 Aug 2012 02:38:47 +0000 (10:38 +0800)]
update changelog
Signed-off-by: Li Peng <peng.li@intel.com>
Li Peng [Mon, 13 Aug 2012 02:36:47 +0000 (10:36 +0800)]
Merge branch 'devel'
Li Peng [Fri, 3 Aug 2012 06:44:52 +0000 (14:44 +0800)]
gfx: a better way to do gfx suspend/resume at DPMS on/off
A regression was introduced since we add gfx runtime pm support in DPMS
control interface and the "-sharevts" parameter for X launch on mfld, if
user run "xset dpms force off" and then "echo mem > /sys/power/state",
dsi dpi panel will fail to resume back.
Here is the problem analysis: at DPMS off, gfx driver will shutdown the
panel and enter runtime suspend, at this time if kernel doing system suspend,
PCI subsystem will call device's runtime resume interface if it find
device is in runtime suspend state. In this case it just resume gfx device
but doesn't handle dsi dpi panel, then it will cause panel fail to light on in
subsequent resume path.
The fix is directly calling functions to control gfx device suspend/resume,
rather than the indirect way of pm_runtime_put() and pm_runtime_get().
Signed-off-by: Li Peng <peng.li@intel.com>
Li Peng [Fri, 27 Jul 2012 10:33:09 +0000 (18:33 +0800)]
Update changelog
Li Peng [Fri, 27 Jul 2012 10:28:21 +0000 (18:28 +0800)]
Merge branch 'devel'
Ortiz, Samuel [Fri, 27 Jul 2012 07:53:49 +0000 (00:53 -0700)]
Merge changes I352cb3c2,I94b43501 into devel
* changes:
config-tizen: enable pn544 hci option
fix compilation by remove duplicate definition
Ortiz, Samuel [Fri, 27 Jul 2012 07:52:38 +0000 (00:52 -0700)]
Merge changes Ib85ed842,I74d3677b into devel
* changes:
compact nfc 3.0.8
x86 pn544 blackbay
Ortiz, Samuel [Fri, 27 Jul 2012 07:48:58 +0000 (00:48 -0700)]
Merge "netlink: advertise incomplete dumps" into devel
Li Peng [Fri, 27 Jul 2012 03:00:26 +0000 (11:00 +0800)]
gfx: enable runtime pm support at DPMS
before we just turn off/on screen at DPMS off/on, now we do further
to let gfx h/w enter and exit D0i3 if userspace control screen off/on
through DPMS interface, it could save more power
Signed-off-by: Li Peng <peng.li@intel.com>
arron.wang [Thu, 26 Jul 2012 07:29:05 +0000 (15:29 +0800)]
config-tizen: enable pn544 hci option
arron.wang [Thu, 26 Jul 2012 07:28:23 +0000 (15:28 +0800)]
fix compilation by remove duplicate definition
genl_dump_check_consistent is defined in include/net/genetlink.h
which is added in commit
d083afe6ad8bb7f438f81ba801483f4b719e3223
arron.wang [Thu, 26 Jul 2012 07:27:57 +0000 (15:27 +0800)]
compact nfc 3.0.8
arron.wang [Thu, 26 Jul 2012 07:26:58 +0000 (15:26 +0800)]
x86 pn544 blackbay
Li Peng [Thu, 26 Jul 2012 06:04:04 +0000 (14:04 +0800)]
gfx: remove mutex protection in __dpi_panel_power_off
we already called mutex lock at higher level function, so no need to
do it again at __dpi_panel_power_off, otherwise it will cause mutex
lock twice at suspend path
Signed-off-by: Li Peng <peng.li@intel.com>
arron.wang [Thu, 26 Jul 2012 04:34:43 +0000 (12:34 +0800)]
netlink: advertise incomplete dumps
Consider the following situation:
* a dump that would show 8 entries, four in the first
round, and four in the second
* between the first and second rounds, 6 entries are
removed
* now the second round will not show any entry, and
even if there is a sequence/generation counter the
application will not know
To solve this problem, add a new flag NLM_F_DUMP_INTR
to the netlink header that indicates the dump wasn't
consistent, this flag can also be set on the MSG_DONE
message that terminates the dump, and as such above
situation can be detected.
To achieve this, add a sequence counter to the netlink
callback struct. Of course, netlink code still needs
to use this new functionality. The correct way to do
that is to always set cb->seq when a dumpit callback
is invoked and call nl_dump_check_consistent() for
each new message. The core code will also call this
function for the final MSG_DONE message.
To make it usable with generic netlink, a new function
genlmsg_nlhdr() is needed to obtain the netlink header
from the genetlink user header.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Yong Wang [Tue, 24 Jul 2012 01:50:09 +0000 (09:50 +0800)]
rtc-mrst: init wakeup earlier than registering RTC device
Otherwise the RTC core won't know this is an wakeup capable RTC
device.
Signed-off-by: Yong Wang <yong.y.wang@intel.com>
Li Peng [Wed, 18 Jul 2012 11:50:40 +0000 (19:50 +0800)]
Update changelog
Signed-off-by: Li Peng <peng.li@intel.com>
Li Peng [Wed, 18 Jul 2012 11:55:09 +0000 (19:55 +0800)]
Merge branch 'devel'
Austin Zhang [Wed, 18 Jul 2012 04:01:43 +0000 (12:01 +0800)]
Set and send ABS_X/Y for enabling specific multitouch input driver for mxt224 panel
Set and send ABS_X/Y to make input driver evdevmultitouch happy, so
that we can use that input driver to implement multitouch support
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Li, Peng [Mon, 16 Jul 2012 05:50:09 +0000 (22:50 -0700)]
Merge "Added screen off notifier callback" into devel
Li, Peng [Mon, 16 Jul 2012 05:38:47 +0000 (22:38 -0700)]
Merge "Added screen-off notifier." into devel
Austin Zhang [Mon, 9 Jul 2012 08:05:27 +0000 (16:05 +0800)]
Added screen off notifier callback
Added screen off notifier callback so that 'touch' will not light
on the LCD during one pending suspend process which is being blocked
by wakeup count from one wakeup event.
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Austin Zhang [Thu, 5 Jul 2012 12:33:05 +0000 (20:33 +0800)]
Added screen-off notifier.
Added notifier which indicating the screen is turned off, then we
should disable some devices from this stage, for example, we should
disable touch panel after screen off so that 'touch' will not light
on the LCD again when there is being pended suspend process due to
wakeup event, like insert USB cable.
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Markus Lehtonen [Thu, 12 Jul 2012 12:32:23 +0000 (15:32 +0300)]
Update changelog
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Thu, 12 Jul 2012 17:17:44 +0000 (20:17 +0300)]
audio: fix locking bug in the audience es305 driver
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Thu, 12 Jul 2012 12:32:23 +0000 (15:32 +0300)]
Update changelog
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Thu, 12 Jul 2012 17:17:44 +0000 (20:17 +0300)]
audio: fix locking bug in the audience es305 driver
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Tue, 3 Jul 2012 15:20:03 +0000 (18:20 +0300)]
ti-wlan: fix compilation when Android PM is disabled
Fixes compilation of out-of-tree TI WLAN driver in Tizen.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Thu, 5 Jul 2012 11:20:14 +0000 (14:20 +0300)]
tizen packaging: use TI out-of-tree wifi driver from kernel source tree
Remove the ti-wlan source tarball from packaging. Update spec file to
use the driver imported to the kernel source tree instead of the
tarball.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Thu, 5 Jul 2012 11:29:48 +0000 (14:29 +0300)]
tizen packaging: update TI wifi driver build script
Update the wl12xx driver build script to MCG WW26 release. Also, update
the related tizen patch.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Tue, 3 Jul 2012 13:27:16 +0000 (16:27 +0300)]
Update TI out-of-tree wifi driver
WW26 release from MCG, git SHA1
0231038d90451da0e1fe1a09ff89e9ddb0fded20
Import the ti-wlan sources from MCG repo to our kernel source tree.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Tue, 3 Jul 2012 15:42:56 +0000 (18:42 +0300)]
Update changelog
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Yong Wang [Mon, 2 Jul 2012 06:15:36 +0000 (14:15 +0800)]
intel_mid_hsi: replace wakelock with wakeup event
Replace Android's wakelock mechanism in modem driver
with wakeup event mechanism in order to block system
suspend operations when necessary.
Signed-off-by: Yong Wang <yong.y.wang@intel.com>
vivian, zhang [Mon, 25 Jun 2012 04:09:17 +0000 (12:09 +0800)]
Sound: import Jack Monitoring Interface from samsung
It is used to set jack status: earjack_online, earkey_online;
these status are required for earjack type detecting in avsystem project.
Signed-off-by: Vivian Zhang <vivian.zhang@intel.com>
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Austin, Zhang [Mon, 18 Jun 2012 07:52:33 +0000 (15:52 +0800)]
prevent system from entering s3 in gadget connected by using wakeup event way
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Signed-off-by: Yong Wang <yong.y.wang@intel.com>
Austin, Zhang [Mon, 18 Jun 2012 07:51:25 +0000 (15:51 +0800)]
prevent system from entering s3 in otg work by using wakeup event way
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Signed-off-by: Yong Wang <yong.y.wang@intel.com>
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Austin, Zhang [Mon, 18 Jun 2012 07:49:52 +0000 (15:49 +0800)]
prevent system from entering s3 in RTC setting by using wakeup event way
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Signed-off-by: Yong Wang <yong.y.wang@intel.com>
Austin, Zhang [Mon, 18 Jun 2012 07:47:22 +0000 (15:47 +0800)]
prevent system from entering s3 in data operation by using wakeup event way
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Signed-off-by: Yong Wang <yong.y.wang@intel.com>
Austin, Zhang [Mon, 18 Jun 2012 07:41:33 +0000 (15:41 +0800)]
prevent system from entering s3 while charger is connected by using wakeup event way
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Signed-off-by: Yong Wang <yong.y.wang@intel.com>
Austin Zhang [Fri, 29 Jun 2012 05:36:26 +0000 (13:36 +0800)]
Disable android earlysuspend and wakelock features
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Austin, Zhang [Mon, 28 May 2012 11:03:07 +0000 (19:03 +0800)]
add back android pm entries so that we support different pm path according MACRO
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Li Peng [Fri, 18 May 2012 07:37:01 +0000 (15:37 +0800)]
gfx: new suspend and resume interface
Signed-off-by: Li Peng <peng.li@intel.com>
Austin, Zhang [Mon, 28 May 2012 10:57:53 +0000 (18:57 +0800)]
make ms5607 driver use tranditional pm path if no-android pm
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Austin, Zhang [Mon, 28 May 2012 10:57:16 +0000 (18:57 +0800)]
make mpu3050 driver use tranditional pm path if no-android pm
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Austin, Zhang [Mon, 28 May 2012 10:56:48 +0000 (18:56 +0800)]
make ltr502als driver use tranditional pm path if no-android pm
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Austin, Zhang [Mon, 28 May 2012 10:56:13 +0000 (18:56 +0800)]
make lsm303-compass driver use tranditional pm path if no-android pm
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Austin, Zhang [Mon, 28 May 2012 10:55:36 +0000 (18:55 +0800)]
make lps331ap driver use tranditional pm path if no-android pm
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Austin, Zhang [Mon, 28 May 2012 10:55:10 +0000 (18:55 +0800)]
make lis3dh driver use tranditional pm path if no-android pm
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Austin, Zhang [Mon, 28 May 2012 10:54:39 +0000 (18:54 +0800)]
make leds-kpd driver use tranditional pm path if no-android pm
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Austin, Zhang [Mon, 28 May 2012 10:54:03 +0000 (18:54 +0800)]
make l3g4200d driver use tranditional pm path if no-android pm
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Austin, Zhang [Mon, 28 May 2012 10:53:22 +0000 (18:53 +0800)]
make hmc5883 driver use tranditional pm path if no-android pm
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Austin, Zhang [Mon, 28 May 2012 10:52:18 +0000 (18:52 +0800)]
make atmel driver use tranditional pm path if no-android pm
Signed-off-by: Austin Zhang <austin.zhang@intel.com>
Li Peng [Thu, 17 May 2012 07:22:31 +0000 (15:22 +0800)]
gfx: ignore dpms operation if driver in early suspend
in early suspend, driver already turn off panel, so if there's
more dpms request, just ignore it.
This is to fix below test sequence
1. xset dpms force off
2. echo mem > /sys/power/state
3. echo on > /sys/power/state
Signed-off-by: Li Peng <peng.li@intel.com>
Li Peng [Tue, 8 May 2012 07:43:15 +0000 (15:43 +0800)]
gfx: remove WARN_ON in psb_gtt_map_meminfo_ioctl
otherwise there will be a kernel warning that may confuse people
Signed-off-by: Li Peng <peng.li@intel.com>
Li Peng [Tue, 22 May 2012 06:11:05 +0000 (14:11 +0800)]
gfx: fix early_suspend/late_resume for TMD_6X10_VID panel
most code come from MCG, which use dsi_hw_context to save/restore
panel registers at early_suspend/late_resume.
Test method
early_suspend: echo mem > /sys/power/state
late_resume: echo on > /sys/power/state
Signed-off-by: Li Peng <peng.li@intel.com>
Li Peng [Mon, 14 May 2012 09:35:53 +0000 (17:35 +0800)]
gfx: fix backlight control failure on PR3
Signed-off-by: Li Peng <peng.li@intel.com>
Li Peng [Fri, 4 May 2012 08:45:25 +0000 (16:45 +0800)]
gfx: get mdfld save/restore pipe registers back to work
re-enable mdfld_save_pipe_registers and mdfld_restore_pipe_registers
Signed-off-by: Li Peng <peng.li@intel.com>
Markus Lehtonen [Fri, 15 Jun 2012 09:29:30 +0000 (12:29 +0300)]
tizen packaging: make gbs happy about the tarball name
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Wed, 13 Jun 2012 11:32:25 +0000 (14:32 +0300)]
tizen packaging: get rid of the hard dependency to hardlink
Devel package does not require hardlink. However, the post script is
still there and run if hardlink is present.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Fri, 8 Jun 2012 10:05:50 +0000 (13:05 +0300)]
tizen packaging: Rewrite .spec
Big revamp and simplification to the .spec file. Get rid of lot of the
Fedora/Moblin legacy. The spec should be a lot more readable and easier
to maintain, now.
Also, updates the wifi driver build script patch
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Fri, 8 Jun 2012 08:32:45 +0000 (11:32 +0300)]
tizen packaging: add initial version
Mangle the old changelog to Tizen format.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Mon, 21 May 2012 13:12:19 +0000 (16:12 +0300)]
Fix compilation when ANDROID_PARANOID_NET is disabled
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Mon, 21 May 2012 12:10:27 +0000 (15:10 +0300)]
config-tizen: miscellanous config changes
- disable MD, i.e. multiple devices (e.g. vlm) support
- enable devmem, i.e. memory device support
- disable MODULE_RONX, i.e. module data made RO and NX
- enable devtmpfs
- disable PENWELL_OTG_TEST (doesn't compile and we don't need it)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Mon, 21 May 2012 11:47:14 +0000 (14:47 +0300)]
config-tizen: tizen networking options
- enable bridge support
- enable TAP/TUN device
- disable ANDROID_PARANOID_NETWORK, i.e. less strict security for socket
creation
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Elena Reshetova [Wed, 2 May 2012 13:08:50 +0000 (16:08 +0300)]
config-tizen: enable smack
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Tue, 3 Apr 2012 08:05:21 +0000 (11:05 +0300)]
config-tizen: enable PVR debug and command tracing and disable GL3 cache
Markus Lehtonen [Tue, 3 Apr 2012 08:03:49 +0000 (11:03 +0300)]
config-tizen: disable HDMI audio
Run make oldconfig and disable Intel HDMI audio.
Markus Lehtonen [Wed, 4 Apr 2012 06:17:51 +0000 (09:17 +0300)]
config-tizen: base from MCG WW26 release
Add kernel.configs from weekly release as tizen_bb_defconfig and
tizen_rr_defconfig.
Elena Reshetova [Fri, 4 May 2012 06:09:19 +0000 (09:09 +0300)]
Backport SMACK changes from 3.3 to 3.0
Signed-off-by: Elena Reshetova <elena.reshetova@intel.com>
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Markus Lehtonen [Thu, 26 Apr 2012 08:37:55 +0000 (11:37 +0300)]
Tizen: Revert "[PORT FROM R2] remove depmod from build"
This reverts commit
76ad204623a7790c8ba66d28f317726d0705c41d.
Tizen needs depmod.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:30 +0000 (17:24 +0300)]
staging: msvdx: hdmi support
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:29 +0000 (17:24 +0300)]
staging: msvdx: add query for active hw video entry
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:28 +0000 (17:24 +0300)]
staging: msvdx: support for non-DO firmware
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:27 +0000 (17:24 +0300)]
staging: topaz: add support for bias table
Part of hw video driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:26 +0000 (17:24 +0300)]
staging: msvdx: remove otc hdmi support
In preparation for supporting UMG hw video driver update which
has different HDMI support.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:25 +0000 (17:24 +0300)]
staging: msvdx: remove explicit delay after data submission
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:24 +0000 (17:24 +0300)]
staging: msvdx: check context type before resetting
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:23 +0000 (17:24 +0300)]
staging: msvdx: rewrite hw reset logic
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:21 +0000 (17:24 +0300)]
staging: msvdx: upload firmware using dma as part of fw setup
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:22 +0000 (17:24 +0300)]
staging: msvdx: use ospm to determine pm state
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:20 +0000 (17:24 +0300)]
staging: msvdx: reduce polling frequency in register read
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:19 +0000 (17:24 +0300)]
staging: topaz: rewrite hw reset logic
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:18 +0000 (17:24 +0300)]
staging: imgv: ttm: replace buffer creation with latest UMG logic
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:17 +0000 (17:24 +0300)]
staging: imgv: ttm: remove local proto for buffer class destructor
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:16 +0000 (17:24 +0300)]
staging: imgv: ttm: remove restricted access region support
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:15 +0000 (17:24 +0300)]
staging: topaz: do not mark mtx saved if driver is not present
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:14 +0000 (17:24 +0300)]
staging: topaz: check if hw is stuck
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:13 +0000 (17:24 +0300)]
staging: topaz: dbg: logging for timeout
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:12 +0000 (17:24 +0300)]
staging: topaz: schedule hw suspension on timeout
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:11 +0000 (17:24 +0300)]
staging: topaz: check if hw is idle based on command fifo
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:10 +0000 (17:24 +0300)]
staging: imgv: delay fence timeout
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:09 +0000 (17:24 +0300)]
staging: msvdx: support for D0 and non-DO reset sequence
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Topi Pohjolainen [Fri, 27 Apr 2012 14:24:08 +0000 (17:24 +0300)]
staging: topaz: fix mtx data size calculation
Part of video hw driver update from UMG.
Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>