File: ast_post.h

package info (click to toggle)
linux 6.17.6-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,734,348 kB
  • sloc: ansic: 26,679,111; asm: 271,215; sh: 147,319; python: 75,916; makefile: 57,295; perl: 36,942; xml: 19,562; cpp: 5,899; yacc: 4,909; lex: 2,943; awk: 1,556; sed: 29; ruby: 25
file content (50 lines) | stat: -rw-r--r-- 1,196 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* SPDX-License-Identifier: MIT */

#ifndef AST_POST_H
#define AST_POST_H

#include <linux/limits.h>
#include <linux/types.h>

struct ast_device;

/* DRAM timing tables */
struct ast_dramstruct {
	u16 index;
	u32 data;
};

/* hardware fields */
#define __AST_DRAMSTRUCT_DRAM_TYPE      0x0004

/* control commands */
#define __AST_DRAMSTRUCT_UDELAY         0xff00
#define __AST_DRAMSTRUCT_INVALID        0xffff

#define __AST_DRAMSTRUCT_INDEX(_name) \
	(__AST_DRAMSTRUCT_ ## _name)

#define AST_DRAMSTRUCT_INIT(_name, _value) \
	{ __AST_DRAMSTRUCT_INDEX(_name), (_value) }

#define AST_DRAMSTRUCT_UDELAY(_usecs) \
	AST_DRAMSTRUCT_INIT(UDELAY, _usecs)
#define AST_DRAMSTRUCT_INVALID \
	AST_DRAMSTRUCT_INIT(INVALID, U32_MAX)

#define AST_DRAMSTRUCT_IS(_entry, _name) \
	((_entry)->index == __AST_DRAMSTRUCT_INDEX(_name))

u32 __ast_mindwm(void __iomem *regs, u32 r);
void __ast_moutdwm(void __iomem *regs, u32 r, u32 v);

bool mmc_test(struct ast_device *ast, u32 datagen, u8 test_ctl);
bool mmc_test_burst(struct ast_device *ast, u32 datagen);

/* ast_2000.c */
void ast_2000_set_def_ext_reg(struct ast_device *ast);

/* ast_2300.c */
void ast_2300_set_def_ext_reg(struct ast_device *ast);

#endif