aboutsummaryrefslogtreecommitdiffstats
path: root/net/lapb/lapb_in.c
diff options
context:
space:
mode:
authorAndrey Smirnov <andrew.smirnov@gmail.com>2017-05-15 09:48:58 -0400
committerPeter Chen <peter.chen@nxp.com>2017-05-17 21:06:25 -0400
commit62b97d502bb76c6e8d589e42e02bfcb7bdff0453 (patch)
treee56d0431fabed59913a518d1697d975d8ed800f1 /net/lapb/lapb_in.c
parent2ea659a9ef488125eb46da6eb571de5eae5c43f6 (diff)
usb: chipidea: imx: Do not access CLKONOFF on i.MX51
Unlike i.MX53, i.MX51's USBOH3 register file does not implemenent registers past offset 0x018, which includes MX53_USB_CLKONOFF_CTRL_OFFSET and trying to access that register on said platform results in external abort. Fix it by enabling CLKONOFF accessing codepath only for i.MX53. Cc: stable <stable@vger.kernel.org> Fixes 3be3251db088 ("usb: chipidea: imx: Disable internal 60Mhz clock with ULPI PHY") Cc: cphealy@gmail.com Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: linux-usb@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Peter Chen <peter.chen@nxp.com>
Diffstat (limited to 'net/lapb/lapb_in.c')
0 files changed, 0 insertions, 0 deletions
id='n57' href='#n57'>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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165





















































































































                                                                                                          
                                                                               

                                                                            
                                                                            










































                                                                                   
#!/usr/bin/env python

import sys

from plot import decode
from os.path  import splitext, basename

from glob import glob
from collections import defaultdict
import optparse

from util import load_csv_file, write_csv_file

o = optparse.make_option

opts = [
#    o('-r', '--result-type', action='store', dest='',
#      type='choice', choices=['hard', 'soft', 'tardiness', 'rel-tardiness'],
#      help='what data should be emitted?'),
    ]

defaults = {
    }

options = None

#G-EDF/testpoint_ucap=13.75_wss=1792_dist=exp-10-10-100_deadlines=implicit_host=ludwig_scheduler=G-EDF.csv

IDX_WSS  = 4
IDX_UCAP = 5

IDX_HARD_IDLE =  6
IDX_HARD_LOAD =  7

IDX_SOFT_IDLE =  8
IDX_SOFT_LOAD = 17

IDX_TARD_MAX_IDLE =  9
IDX_TARD_AVG_IDLE = 10
IDX_TARD_STD_IDLE = 12

IDX_TARD_MAX_LOAD = 18
IDX_TARD_AVG_LOAD = 19
IDX_TARD_STD_LOAD = 21

IDX_RTARD_MAX_IDLE = 13
IDX_RTARD_AVG_IDLE = 14
IDX_RTARD_STD_IDLE = 16

IDX_RTARD_MAX_LOAD = 22
IDX_RTARD_AVG_LOAD = 23
IDX_RTARD_STD_LOAD = 25


def key(fname):
    name, ext = splitext(basename(fname))
    conf = decode(name)

    sched = conf['scheduler']