Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
72e08db1
Commit
72e08db1
authored
Aug 04, 2010
by
Jesper Nilsson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CRIS: Add ARTPEC-3 and timestamps for sync-serial
Signed-off-by:
Jesper Nilsson
<
jesper.nilsson@axis.com
>
parent
4f248d1c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
1 deletion
+26
-1
arch/cris/include/asm/sync_serial.h
arch/cris/include/asm/sync_serial.h
+26
-1
No files found.
arch/cris/include/asm/sync_serial.h
View file @
72e08db1
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
#define SSP_OPOLARITY _IOR('S', 4, unsigned int)
#define SSP_OPOLARITY _IOR('S', 4, unsigned int)
#define SSP_SPI _IOR('S', 5, unsigned int)
#define SSP_SPI _IOR('S', 5, unsigned int)
#define SSP_INBUFCHUNK _IOR('S', 6, unsigned int)
#define SSP_INBUFCHUNK _IOR('S', 6, unsigned int)
#define SSP_INPUT _IOR('S', 7, unsigned int)
/* Values for SSP_SPEED */
/* Values for SSP_SPEED */
#define SSP150 0
#define SSP150 0
...
@@ -37,6 +38,7 @@
...
@@ -37,6 +38,7 @@
#define SSP921600 13
#define SSP921600 13
#define SSP3125000 14
#define SSP3125000 14
#define CODEC 15
#define CODEC 15
#define CODEC_f32768 16
#define FREQ_4MHz 0
#define FREQ_4MHz 0
#define FREQ_2MHz 1
#define FREQ_2MHz 1
...
@@ -46,9 +48,14 @@
...
@@ -46,9 +48,14 @@
#define FREQ_128kHz 5
#define FREQ_128kHz 5
#define FREQ_64kHz 6
#define FREQ_64kHz 6
#define FREQ_32kHz 7
#define FREQ_32kHz 7
/* FREQ_* with values where bit (value & 0x10) is set are */
/* used for CODEC_f32768 */
#define FREQ_4096kHz 16
/* CODEC_f32768 */
/* Used by application to set CODEC divider, word rate and frame rate */
/* Used by application to set CODEC divider, word rate and frame rate */
#define CODEC_VAL(freq, clk_per_sync, sync_per_frame) (CODEC | (freq << 8) | (clk_per_sync << 16) | (sync_per_frame << 28))
#define CODEC_VAL(freq, clk_per_sync, sync_per_frame) \
((CODEC + ((freq & 0x10) >> 4)) | (freq << 8) | \
(clk_per_sync << 16) | (sync_per_frame << 28))
/* Used by driver to extract speed */
/* Used by driver to extract speed */
#define GET_SPEED(x) (x & 0xff)
#define GET_SPEED(x) (x & 0xff)
...
@@ -68,6 +75,7 @@
...
@@ -68,6 +75,7 @@
#define NORMAL_SYNC 1
#define NORMAL_SYNC 1
#define EARLY_SYNC 2
#define EARLY_SYNC 2
#define SECOND_WORD_SYNC 0x40000
#define SECOND_WORD_SYNC 0x40000
#define LATE_SYNC 0x80000
#define BIT_SYNC 4
#define BIT_SYNC 4
#define WORD_SYNC 8
#define WORD_SYNC 8
...
@@ -104,4 +112,21 @@
...
@@ -104,4 +112,21 @@
/* Values for SSP_INBUFCHUNK */
/* Values for SSP_INBUFCHUNK */
/* plain integer with the size of DMA chunks */
/* plain integer with the size of DMA chunks */
/* To ensure that the timestamps are aligned with the data being read
* the read length MUST be a multiple of the length of the DMA buffers.
*
* Use a multiple of SSP_INPUT_CHUNK_SIZE defined below.
*/
#define SSP_INPUT_CHUNK_SIZE 256
/* Request struct to pass through the ioctl interface to read
* data with timestamps.
*/
struct
ssp_request
{
char
__user
*
buf
;
/* Where to put the data. */
size_t
len
;
/* Size of buf. MUST be a multiple of */
/* SSP_INPUT_CHUNK_SIZE! */
struct
timespec
ts
;
/* The time the data was sampled. */
};
#endif
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment