| Commit message (Collapse) | Author | Age |
... | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Removed unnecessary true/false identical macro values
Changed tcm_area.type field to is2d
Shortened variable names
Renamed functions based on what they do
Simplified some of the logic
Removed most of the debug messages and unused/duplicate variables
Removed duplicate parameter checks and made fuctions that always
succeed void.
Moved tcm_dbg.h macros into tcm_utils.h
Tested using memmgr_1.0 tests.
Signed-off-by: Lajos Molnar <molnar@ti.com>
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Changed the way tiler blocks are maintained. 1D blocks are maintained
similarly as before, but 2D blocks now reside on "reserved areas" that
are maintained in area_info structs.
Note, that even though auto-packing is supported, there is no open API
to specify alignment other than kernel page size. Therefore, there is
no expected allocation efficiency gain.
Reference counts are also introduced although they are not yet used.
Tested using memmgr_1.0 test as well as select allocation/freeing
kernel calls to verify logic of maintaining blocks in the reserved area.
Signed-off-by: Lajos Molnar <molnar@ti.com>
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| | |
Also fixed a compiler warning.
Signed-off-by: Lajos Molnar <molnar@ti.com>
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Added instance support for DMM PAT programming (dmm.c)
Created TMM interface for flexible tiler memory management (PAT or not).
Added instance support to DMM PAT memory pages management (dmm_mem.c)
Removed unused get_page/free_page methods.
Fixed TILER_GET_ACC_MODE macro to return correct tiler_fmt values.
Fixed a few sizeof style errors, and simplified dmm_mem.c
Signed-off-by: Lajos Molnar <molnar@ti.com>
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| | |
Signed-off-by: Lajos Molnar <molnar@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Moved SiTA specific util function into tcm_sita.c
Added copyright headers
Adjusted TCM_INIT definition macro as attribute type can be known.
Prepared for renames in next commit.
Signed-off-by: Lajos Molnar <molnar@ti.com>
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| | |
Also removed unnecessary fields in mem_info struct
Signed-off-by: Lajos Molnar <molnar@ti.com>
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
TCM sita allocator bug fix: set area type
Allow flexible tiler-allocation bands vs. hardoded 64-slot bands.
Allow 1D area allocation/mapping at slot granularity.
Use kernel macros for rounding and aligning.
Remove duplicate checks in TCM.
Minor formatting.
Added tcm_sizeof macro.
Fixed tcm_for_each_slice macro.
Signed-off-by: Lajos Molnar <molnar@ti.com>
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Fixe sizeof constructs to use the target variable's type instead of
hardcoded type.
Removed multi-line strings, extra empty lines.
Signed-off-by: Lajos Molnar <molnar@ti.com>
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Moved TCM files to their correct location to be able to see future diffs.
Signed-off-by: Lajos Molnar <molnar@ti.com>
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Initial TCM code cleanup
Fixed spacing and most comments according to kernel coding style.
Fixed multi-line strings.
Made all function signatures static.
Replaced memset initialization with "= {0}".
Replaced AREA_STR macro with cleaner print macro.
Removed unnecessary mutex macros.
Removed unnecessary parentheses.
There is a checkpatch warning for the AREA macro, which is expected.
Signed-off-by: Lajos Molnar <molnar@ti.com>
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Signed-off-by: R Ramachandra <r.ramachandra@ti.com>
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Fixed bugs in sita_init
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Fixed Bugs, Added memset to sita_pvt in sita_init, updated utils to copy new fields in insert_element
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| | |
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| | |
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| | |
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Free buf info struct if copy_to/copy_from check fails
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| | |
Signed-off-by: Lajos Molnad <molnar@ti.com>
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
We introduce two new dmm APIs --dmm_get_pages/dmm_free_pages --
to the tiler driver, which allocate and free a set of dmm pages.
Previously, we allocated/freed single pages using
dmm_get_page()/dmm_free_page. we observed that moving
single pages from the used page stack to the free page
stack caused excessive delays because of linear/unsorted
searches.
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| | |
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Don't dereference sysptr in tiler_alloc_packed function
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Enable find buffer logic with new algo
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Create separate module for TILER Area Manager (TAM)
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| | |
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Relocate TILER macro def
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Remove unused DMM Function declarations
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Move error code enums into 2d alloc header
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Add d2c logic to tiler drv; rework dmm pat refill function
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Enable query block
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| | |
Pull in old dmm_ll_drv code into dmm.c
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| | |
Add wrapper structure to house buf_info struct to fix copy to/from
issues
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| | |
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| | |
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| | |
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Replace types with kernel macros
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Reformat function spacing
Signed-off-by: David Sin <davidsin@ti.com>
TILER: Add logic to setup PAT and TILER orientation
Signed-off-by: David Sin <davidsin@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The current driver had a hardcoded minimum value of 2 for pixel clock
divisor (PCD). This doesn't seem to be right.
OMAP4 TRM says that PCD can be 1 when not downscaling, and inverted
pixel clock (IPC) is off.
OMAP3 TRM says the same, but also in the register descriptions that PCD
value 1 is invalid.
OMAP2 TRM says PCD 2 is the minimum.
OMAP2 is still untested, but for both OMAP3 and OMAP4 PCD of 1 seems to
work fine.
This patch adds a new DSS feature, FEAT_PARAM_DSS_PCD, which is used to
find the minimum and maximum PCD. The minimum is set to 2 for OMAP2, and
1 for OMAP3/4.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
regn divider is currently programmed to the registers without change,
but when calculating clock frequencies it is used as regn+1.
To make this similar to how DSI handles the dividers this patch changes
the regn value to be used as such for calculations, but the value
programmed to registers is regn-1.
This simplifies the clock frequency calculations, makes it similar to
DSI, and also allows us to use regn value 0 as undefined.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
|
| |
| |
| |
| |
| |
| |
| | |
Use default regn and regm2 dividers in the hdmi driver if the board file
does not define them.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
|
| |
| |
| |
| | |
Signed-off-by: Xavier Boudet <x-boudet@ti.com>
|
| |
| |
| |
| | |
Signed-off-by: Xavier Boudet <x-boudet@ti.com>
|
| |
| |
| |
| | |
Signed-off-by: Xavier Boudet <x-boudet@ti.com>
|
| |
| |
| |
| |
| | |
Change-Id: I4bd96e76af31d0991ce9e67b0c499f0d6f39a1a8
Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>
|
| |
| |
| |
| |
| |
| |
| | |
Register drm platform device, and a platform device for pvr module in
case it is loaded..
Maybe this should be added to a new file?
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The idea behind it is just to add more modes, and add them with reduced
blanking, so we have more choices while probing the EDID.
It tries to identify what would be the native mode for the monitor, and
add the scaler modes that would be compatible with it, but with reduced
blanking. With that it can get more compatible modes with OMAP pixel
clock.
Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>
|
| |
| |
| |
| |
| |
| | |
Uninitialize properly to make module unloading work.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
A DSS based DRM display driver, which provides a plugin interface for
3d/2d accelerators to register. The core driver handles construction
of CRTC/encoder/connectors to represent the hardware, and support KMS.
This driver replaces omapfb. The omap drm driver allocates framebuffer
memory and implements (with the help of drm_fb_helper) the legacy fbdev
interface.
The driver maps CRTCs to overlays, encoders to overlay-managers, and
connectors to dssdev's.
Signed-off-by: Rob Clark <rob@ti.com>
Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>
|
| |
| |
| |
| | |
Signed-off-by: Rob Clark <rob@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
These small changes should allow GEM to be used with non shmem objects as
well as shmem objects. In the GMA500 case it allows the base framebuffer to
appear as a GEM object and thus acquire a handle and work with KMS.
For i915 it ought to be trivial to get back the wasted memory but putting the
system fb back into stolen RAM and in general I can imagine it allowing the
use of GEM and thus KMS with all the older cards that have their framebuffer
firmly placed in video RAM.
Signed-off-by: Alan Cox <alan@linux.intel.com>
|
| |
| |
| |
| |
| |
| |
| | |
Include the device id in the bus-id to give userspace a way to open
the correct "cardN" when there are multiple device instances.
Signed-off-by: Rob Clark <rob@ti.com>
|
| |
| |
| |
| |
| |
| |
| | |
Main change is to avoid automatically picking timings. Now the driver
defaults to a safe 640x480, and leaves it to the upper layer (drm driver)
to pick the desired resolution based on what the user selects and the
drm infrastucture's parsing of the EDID.
|
| |
| |
| |
| |
| |
| | |
This update was missing for Panda.
Signed-off-by: Xavier Boudet <x-boudet@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Define a new module parameter 'macaddr' to override the MAC address
fetched either from eeprom, or randomly generated.
The expected MAC address shall be in the 01:23:45:67:89:AB format.
Signed-off-by: Sebastien Jan <s-jan@ti.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This patch fixs one performance bug on ARM Cortex A9 dual core platform,
which has been reported on quite a few ARM machines(OMAP4, Tegra 2,
snowball...),
see details from link of https://bugs.launchpad.net/bugs/709245.
In fact, one mb() on ARM is enough to flush L2 cache, but
'dummy->hw_token = token;' after mb() is added just for obeying
correct mb() usage.
The patch has been tested ok on OMAP4 panda A1 board, the performance
of 'dd' over usb mass storage can be increased from 4~5MB/sec to
14~16MB/sec after applying this patch.
Signed-off-by: Ming Lei <ming.lei@canonical.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
X-Git-Tag: next-20110823~95^2~5
X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Fnext%2Flinux-next.git;a=commitdiff_plain;h=74a4fcf19eed6550651f455db5741fd216b4f004
drivers:misc: ti-st: reinit completion on ver read
After the version information has been read, the completion which assists in
wait_for_completion during the firmware send/wait sequence is being re-used
and hence this needs to be re-initialised for fool proof firmware download
retries.
Signed-off-by: Pavan Savoy <pavan_savoy@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Subject: [PATCH] drivers:misc: ti-st: fail-safe on wrong pkt type
Texas Instrument's shared transport driver interpret incoming data from the
UART based on the various protocol drivers registered to the driver such as
btwilink driver or FM or GPS driver which provide logical channel IDs.
In case of bad-behavior from chip such as HCI Event response for a GPS command
or a HCI Event (h/w error event) for a FM response & In case of bad-behavior
from UART driver such as dropping data bytes a fail-safe is required to avoid
kernel panic.
Signed-off-by: Pavan Savoy <pavan_savoy@ti.com>
Signed-off-by: Vijay Badawadagi <bvijay@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
|
| |
| |
| |
| | |
Signed-off-by: David A Long <dave.long@linaro.org>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Added most of the generic GPU initialisation code to mach-omap2.
Change-Id: I90f137c18dcb79aa9b65761147d0aedeed021a27
Signed-off-by: Tony Lofthouse <tony.lofthouse@ti.com>
Signed-off-by: Vikram Pandita <vikram.pandita@ti.com>
Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>
Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@linaro.org>
|
| |
| |
| |
| |
| | |
Change-Id: I4bd96e76af31d0991ce9e67b0c499f0d6f39a1a8
Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>
|