tanzh
2024-09-27 0179a5c4855513427205007d983ec47eba6a13f6
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
 * drivers/pwm/pwm-sunxi-new.h
 *
 * Allwinnertech pulse-width-modulation controller driver
 *
 * Copyright (C) 2018 AllWinner
 *
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2. This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */
#ifndef __PWM_SUNXI_NEW__H__
#define __PWM_SUNXI_NEW__H__
 
#define PWM_PIER    (0x0000)
#define PWM_PISR    (0x0004)
#define    PWM_CIER    (0x0010)
#define    PWM_CISR    (0x0014)
#define PWM_PCCR01    (0x0020)
#define PWM_PCCR23    (0x0024)
#define PWM_PCCR45    (0x0028)
#define PWM_PCCR67    (0x002c)
#define PWM_PCCR89    (0x0030)
#define PWM_PCCRAB    (0x0034)
#define PWM_PCCRCD    (0x0038)
#define PWM_PCCREF    (0x003c)
 
#define PCGR            (0x0040)
 
#define PWM_PDZCR01    (0x0060)
#define PWM_PDZCR23    (0x0064)
#define    PWM_PDZCR45    (0x0068)
#define    PWM_PDZCR67    (0x006c)
#define    PWM_PDZCR89    (0x0070)
#define    PWM_PDZCRAB    (0x0074)
#define    PWM_PDZCRCD    (0x0078)
#define    PWM_PDZCREF    (0x007c)
#define PWM_PER         (0x0080)
 
#define PGR0            (0x0090)
#define PGR1            (0x0094)
 
#define PWM_CER        (0x00c0)
#define PWM_PCR_BASE    (0x0100 + 0x0000)
#define PWM_PPR_BASE    (0x0100 + 0x0004)
#define PWM_PCNTR_BASE    (0x0100 + 0x0008)
#define PPCNTP_BASE     (0x0100 + 0x000c)
#define PWM_CCR_BASE    (0x0100 + 0x0010)
#define    PWM_CRLR_BASE    (0x0100 + 0x0014)
#define PWM_CFLR_BASE    (0x0100 + 0x0018)
/*#define PWM_PCCR8    (0x0300)*/
 
#define PWMG_CS_SHIFT           0
#define PWMG_CS_WIDTH           16
#define PWMG_EN_SHIFT           16
#define PWMG_START_SHIFT        17
#define PWM_COUNTER_START_SHIFT 16
#define PWM_COUNTER_START_WIDTH 16
#define PWM_PUL_START_SHIFT     10
#define PWM_PUL_START_WIDTH     1
#define PWM_PUL_NUM_SHIFT       16
#define PWM_PUL_NUM_WIDTH       16
#define PWM_MODE_ACTS_SHIFT        8
#define PWM_MODE_ACTS_WIDTH     2
#define PWM_ACT_STA_SHIFT    0x8
#define PWM_ACT_STA_WIDTH    0x1
#define PWM_CLK_SRC_SHIFT    0x7
#define PWM_CLK_SRC_WIDTH    0x2
#define PWM_DIV_M_SHIFT        0x0
#define PWM_DIV_M_WIDTH        0x4
#define PWM_PRESCAL_SHIFT    0x0
#define PWM_PRESCAL_WIDTH    0x8
#define PWM_ACT_CYCLES_SHIFT    0x0
#define PWM_ACT_CYCLES_WIDTH    0x10
#define PWM_PERIOD_CYCLES_SHIFT    0x10
#define PWM_PERIOD_CYCLES_WIDTH    0x10
#define PWM_DZ_EN_SHIFT        0x0
#define PWM_DZ_EN_WIDTH        0x1
#define PWM_PDZINTV_SHIFT    0x8
#define PWM_PDZINTV_WIDTH    0x8
#define PWM_BYPASS_WIDTH    0x1
#define PWM_CLK_GATING_SHIFT    0x4
#define PWM_CLK_GATING_WIDTH    0x1
 
#endif