171 Commits

Author SHA1 Message Date
SecureCRT
b4c5202bec msm: kgsl: make cffdump work with the MMU enabled
The tools that process cff dumps expect a linear
memory region, but the start address of that region can
be configured. As long as there is only a single
pagetable (so that there aren't duplicate virtual
addresses in the dump), dumps captured with the
mmu on are easier to deal with than reconfiguring
to turn the mmu off.
2012-06-22 15:38:14 +08:00
SecureCRT
a19d2698cc msm: kgsl: Add ION as an external memory source
Allow ION buffers to be attached via IOCTL_KGSL_MAP_USER_MEM
2012-06-22 15:24:51 +08:00
securecrt
91bbe54c4f msm: kgsl: Fixup per-process memory statistics
Make the framework for reporting per-process memory statistics a little bit
more generic.  This should make it easier to keep track of more external
memory sources as they are added.
2012-06-21 13:41:21 +08:00
securecrt
9d909cf27b msm: kgsl: Make sure kmemleak tool does not report incorrect mem leak.
Certain memory allocations are not properly tracked by kmemleak tool,
which makes it to incorrectly detect memory leak. Notify the tool by using
kmemleak_not_leak() to ignore the memory allocation so that incorrect leaks
report are avoided.
2012-06-21 13:01:23 +08:00
securecrt
dcf924f072 msm: kgsl: Add a new property to IOCTL_KGSL_DEVICE_GETPROPERTY
Return the reset status of the GPU unit when
IOCTL_KGSL_DEVICE_GETPROPERTY is called with
type KGSL_PROP_GPU_RESET_STAT
2012-06-21 12:54:12 +08:00
securecrt
69555a62d1 msm: kgsl: Poke regularly in adreno_idle
Poking once during adreno_idle is not enough; a GPU hang may still happen.
Seen on 7x27A. Write a few times during the wait timeout, to ensure that
the WPTR is updated properly.
2012-06-21 12:46:57 +08:00
securecrt
aa5de9cfcb msm: kgsl: increase valid timestamp range
The existing timestamp_cmp function returns a different
result depending on the order of the input parameters due to
having an asymetric valid window. When no rollover is
detected the window is 2^31 but when a rollover is detected
the window is 25000. This change makes the rollover window
symmetric at 2^31.
2012-06-21 12:34:57 +08:00
securecrt
d319fcfbbd msm: kgsl: flush outer cache for alloc_page() pages
The outer cache needs to be flushed for these pages
after they are allocated so that the GPU and CPU
have a consistent view of them.
2012-06-21 12:30:20 +08:00
SecureCRT
97dd7fe6b5 msm: kgsl: Add a constant for adreno_ringbuffer_issuecmds flags
Use a #define constant instead of a bare constant for the flags
parameter of adreno_ringbuffer_issuecmds.
2012-06-21 00:32:58 +08:00
SecureCRT
ae32a212a5 msm: kgsl: fix error handling in adreno_waittimestamp()
This function was incorrectly reporting hangs when an
error such as ERESTARTSYS was returned by
__wait_event_interruptible_timeout().

msm: kgsl: Make sure WPTR reg is updated properly

Sometimes writes to WPTR register do not take effect, causing a
3D core hang. Make sure the WPTR is updated properly when waiting.

msm: kgsl: Set default value of wait_timeout in the adreno_dev struct

Set the initalization value of wait_timeout at compile time in the
declaration of the adreno_device struct instead of at runtime in
adreno_probe.
2012-06-21 00:02:15 +08:00
securecrt
73aff24078 msm: kgsl: fix size checking in adreno_find_region
This function is supposed to return the memdesc that
contains the range gpuaddr to gpuaddr + size. One of the
lookups was using sizeof(unsigned int) instead of size,
which could cause false positive results from this function
and possibly kernel panics in the snapshot or postmortem
code, which rely on it to do bounds checking for them.
2012-06-20 12:39:35 +08:00
securecrt
fd5e7d8237 msm: kgsl: let postmortem dump find context switch IBs
Because the IBs used for context switching are not allocated
by userspace, a separate search is needed to find them
in adreno_find_region.
2012-06-20 12:25:12 +08:00
SecureCRT
c5ac3240a5 msm: kgsl: improve postmortem and cff bounds checking
Some hangs are fooling the postmortem dump code into
running off the end of a buffer. Fix this by making
its bounds check logic work better by reusing the
logic from kgsl_find_region().
2012-06-19 23:30:34 +08:00
SecureCRT
8be096244d msm: kgsl: Fix when GMEM is saved for A2xx
Saving GMEM is set when doing context switching and should not
be set when creating the gmem shadow.
2012-06-19 21:46:18 +08:00
securecrt
2f3f4d14f9 msm: kgsl: Add support for the preamble context flag
Userspace will set a flag in the context if preambles are in use. If
they are, we can safely skip save and restore commands for the
context. GMEM save/restore is still required.  To improve performance,
preamble commands are skipped when the context hasn't changed since
the last issueibcmds.

from Code Aurora
2012-06-19 14:00:07 +08:00
securecrt
4f50d63951 msm: kgsl: fix format of the rbbm read error message
msm: kgsl: Assign a valid context only after one has been restored
2012-06-18 20:28:17 +08:00
SecureCRT
b38b808efb enable fast charge 2012-06-02 15:33:41 +08:00
tytung
db81187e55 msm: htcleo: export the real WiFi and Bluetooth MAC addresses.
(Credits go to marc1706)
2012-06-01 01:16:20 +08:00
tytung
8505d01410 drivers: mtd: devices: htcleo_nand: leave only correct candidates for WiFi and Bluetooth MAC addresses.
(Credits go to Rick_1995, aka zeusk.)
http://forum.xda-developers.com/showpost.php?p=26579738&postcount=4
2012-06-01 00:33:19 +08:00
tytung
a979a22695 drivers: mtd: devices: htcleo_nand: find the real unique WiFi and Bluetooth MAC addresses.
(Credits go to Franck78 <fbourdonnec@chez.com>)

http://forum.xda-developers.com/showpost.php?p=26556691&postcount=3
2012-06-01 00:21:07 +08:00
tytung
88e7e8a6d2 drivers: usb: gadget: update some usb drivers for USB Tethering. 2012-05-19 19:33:14 +08:00
tytung
50abfc6c2d Merge pull request #4 from zeusk/ics_HWA
[KGSL] update to msm-kgsl3d0 v3.8
2012-05-13 21:49:47 -07:00
Shantanu Gupta
be86226379 [KGSL] add missing files for last commit 2012-05-14 02:47:02 +05:30
Shantanu Gupta
8afb87a6ea [KGSL] update to msm-kgsl3d0 v3.8 2012-05-14 01:49:10 +05:30
tytung
dfac1a861b Merge pull request #3 from zeusk/ics_HWA
Backport android and MSM parts from caf
2012-05-12 12:18:37 -07:00
Shantanu Gupta
daf542e57e Backport android and MSM parts from caf 2012-05-12 16:56:17 +05:30
tytung
0d06b3f2b4 drivers: staging: zram: added ZRAM support: /dev/zramX (X = 0, 1, ...). 2012-05-05 00:19:05 +08:00
SecureCRT
eeb52b2437 fixed the boot logo 2012-05-04 00:38:00 +08:00
Shantanu Gupta
48322595f9 [MSM] Backported a lot of stuff from 2.6.35 and 2.6.32.59 kernels, compiles and tested on device 2012-05-03 19:31:48 +05:30
Shantanu Gupta
bffda154f5 Cleanup remenant code of older kgsl 2012-05-03 12:28:28 +05:30
Shantanu Gupta
c85abf5272 [MSM] Fix makefile, which in an erroneous manner includes the logo file disregarding the board config 2012-05-03 12:15:59 +05:30
Shantanu Gupta
d1aeebac34 [KGSL] remove the older driver along with some
apparently unused, unrequired binaries.
2012-05-03 12:09:48 +05:30
tytung
57f5775c0b Added GENLOCK. 2012-05-01 14:50:48 +08:00
tytung
c6de4393cf Added the latest KGSL driver /dev/kgsl-3d0 for ICS HWA (Hardware Acceleration). (Credits to Securecrt and Rick_1995) 2012-05-01 13:12:22 +08:00
tytung
79b69f0bfb Revert "usb: gadget: Backport Android drivers from 2.6.35 for HD2 by tytung."
This reverts commit 70f8304d7ae4683734b435abeacaa069e33863c9.
2012-01-13 02:00:30 +08:00
tytung
52203a8404 Revert "USB: gadget: added f_accessory gadget driver for android USB accesories and applied all patches. (credit to tytung)"
This reverts commit 2ef9a48295955c3c44ab0b747f382636f73652c7.
2012-01-13 02:00:07 +08:00
tytung
f861dded06 drivers: gpu: packported kgsl from msm-3.0 kernel 2012-01-13 00:31:11 +08:00
tytung
05b17b7a29 drivers: improved the flashlight's ICS compatibility. 2012-01-08 13:20:13 +08:00
tytung
d8579fa109 drivers: cpufreq: added smartass2 governor. 2012-01-07 20:47:05 +08:00
tytung
db9b407d80 drivers: cpufreq: added InteractiveX governor. 2012-01-07 20:31:43 +08:00
tytung
88922c12f5 drivers: net: wireless: backported bcm4329 from tuna kernel 2011-12-13 01:08:16 +08:00
tytung
99dbc5c163 net: packported xt_qtaguid and xt_quota2 to support data usage. 2011-12-10 00:00:42 +08:00
tytung
2ef9a48295 USB: gadget: added f_accessory gadget driver for android USB accesories and applied all patches. (credit to tytung)
5d9d8625e3 and so on.
2011-11-16 00:31:12 +08:00
tytung
aabb2fb32d usb: msm72k_udc: Fix handling of OUT packets on ep0 with length > 0
The gadget level completion function was getting called for the ACK packet
instead of the data packet, making it impossible to read the data from the host.

Signed-off-by: Mike Lockwood <lockwood@android.com>
2011-11-16 00:29:34 +08:00
tytung
70f8304d7a usb: gadget: Backport Android drivers from 2.6.35 for HD2 by tytung.
Completely breaks compatibility with HTC Sense, but is needed for Android 2.3.
References:
3362439a1d
03c08c01c6
3fa64c7f7f
2011-11-15 23:13:34 +08:00
tytung
330c350fdb net: New iface_stat module to monitor persistent network stats.
Adding a new module that tracks the number of bytes/packets transfered by a network interface, even after the interface has been removed.
This is relevant to track the total data usage in mobile devices whose interfaces are added and removed quite frequently (WiFi, Bluetooth, 3G,..).

Monitoring is done only for devices that are configured with a valid IP address (check to exclude virtual/loopback/tunnel interfaces).

Change-Id: I8ac642af1990433ebd0784e8dbd72bf0714b5bf6
Signed-off-by: Ashish Sharma <ashishsharma@google.com>

Included a little modification for the out-of-date HD2 .32 kernel.
2011-11-15 23:00:32 +08:00
tytung
6d2048e7da drivers: video: msm: fixed the color banding issue. (Credit to marc1706)
dfe41d02ca
2011-11-10 01:31:07 +08:00
tytung
64b3392b72 bluetooth: updated bluetooth stack 2011-09-29 23:42:22 +08:00
tytung
92f2f11dd5 Revert "bluetooth: updated bluetooth stack"
This reverts commit eb94bc60a601ba4ad244669cdb0b6c0be95caf54.
2011-09-29 00:18:46 +08:00
tytung
6e0cc9a888 Revert "USB: gadget: f_accessory: Add new gadget driver for android USB accesories."
This reverts commit bcd275a3efcbfa17f943d5871d72881b00fb0b31.
2011-09-29 00:17:56 +08:00