summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/ipa_replica_prepare.py
blob: b6b063332a4ea6b87cddd20a0d53de22d4a0a639 (plain)
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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
#!/usr/bin/python
# Authors: Karl MacMillan <kmacmillan@mentalrootkit.com>
#          Petr Viktorin <pviktori@redhat.com>
#
# Copyright (C) 2008-2012  Red Hat
# see file 'COPYING' for use and warranty information
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

import os
import shutil
import tempfile
from optparse import OptionGroup
from ConfigParser import SafeConfigParser

from ipaserver.install import certs, installutils, bindinstance, dsinstance
from ipaserver.install.replication import enable_replication_version_checking
from ipaserver.plugins.ldap2 import ldap2
from ipaserver.install.bindinstance import (
    add_zone, add_fwd_rr, add_ptr_rr, dns_container_exists)
from ipapython import ipautil, admintool, dogtag
from ipapython.dn import DN
from ipapython import version
from ipalib import api
from ipalib import errors


class ReplicaPrepare(admintool.AdminTool):
    command_name = 'ipa-replica-prepare'

    usage = "%prog [options] <replica-fqdn>"

    description = "Prepare a file for replica installation."

    @classmethod
    def add_options(cls, parser):
        super(ReplicaPrepare, cls).add_options(parser, debug_option=True)

        parser.add_option("-p", "--password", dest="password",
            help="Directory Manager password (for the existing master)")
        parser.add_option("--ip-address", dest="ip_address", type="ip",
            help="add A and PTR records of the future replica")
        parser.add_option("--reverse-zone", dest="reverse_zone",
            help="the reverse DNS zone to use")
        parser.add_option("--no-reverse", dest="no_reverse",
            action="store_true", default=False,
            help="do not create reverse DNS zone")
        parser.add_option("--no-pkinit", dest="setup_pkinit",
            action="store_false", default=True,
            help="disables pkinit setup steps")
        parser.add_option("--ca", dest="ca_file", default="/root/cacert.p12",
            metavar="FILE",
            help="location of CA PKCS#12 file, default /root/cacert.p12")

        group = OptionGroup(parser, "SSL certificate options",
            "Only used if the server was installed using custom SSL certificates")
        group.add_option("--dirsrv_pkcs12", dest="dirsrv_pkcs12",
            metavar="FILE",
            help="install certificate for the directory server")
        group.add_option("--http_pkcs12", dest="http_pkcs12",
            metavar="FILE",
            help="install certificate for the http server")
        group.add_option("--pkinit_pkcs12", dest="pkinit_pkcs12",
            metavar="FILE",
            help="install certificate for the KDC")
        group.add_option("--dirsrv_pin", dest="dirsrv_pin", metavar="PIN",
            help="PIN for the Directory Server PKCS#12 file")
        group.add_option("--http_pin", dest="http_pin", metavar="PIN",
            help="PIN for the Apache Server PKCS#12 file")
        group.add_option("--pkinit_pin", dest="pkinit_pin", metavar="PIN",
            help="PIN for the KDC pkinit PKCS#12 file")
        parser.add_option_group(group)

    def validate_options(self):
        options = self.options
        super(ReplicaPrepare, self).validate_options(needs_root=True)
        installutils.check_server_configuration()

        if not options.ip_address:
            if options.reverse_zone:
                self.option_parser.error("You cannot specify a --reverse-zone "
                    "option without the --ip-address option")
            if options.no_reverse:
                self.option_parser.error("You cannot specify a --no-reverse "
                    "option without the --ip-address option")
        elif options.reverse_zone and options.no_reverse:
            self.option_parser.error("You cannot specify a --reverse-zone "
                "option together with --no-reverse")

        #Automatically disable pkinit w/ dogtag until that is supported
        options.setup_pkinit = False

        # If any of the PKCS#12 options are selected, all are required.
        pkcs12_opts = [options.dirsrv_pkcs12, options.dirsrv_pin,
                    options.http_pkcs12, options.http_pin]
        if options.setup_pkinit:
            pkcs12_opts.extend([options.pkinit_pkcs12, options.pkinit_pin])
        if pkcs12_opts[0]:
            pkcs12_okay = all(opt for opt in pkcs12_opts)
        else:
            pkcs12_okay = all(opt is None for opt in pkcs12_opts)
        if not pkcs12_okay:
            self.option_parser.error(
                "All PKCS#12 options are required if any are used.")

        if len(self.args) < 1:
            self.option_parser.error(
                "must provide the fully-qualified name of the replica")
        elif len(self.args) > 1:
            self.option_parser.error(
                "must provide exactly one name for the replica")
        else:
            [self.replica_fqdn] = self.args

        api.bootstrap(in_server=True)
        api.finalize()

        if api.env.host == self.replica_fqdn:
            raise admintool.ScriptError("You can't create a replica on itself")

        if not api.env.enable_ra and not options.http_pkcs12:
            raise admintool.ScriptError(
                "Cannot issue certificates: a CA is not installed. Use the "
                "--http_pkcs12, --dirsrv_pkcs12 options to provide custom "
                "certificates.")

        if options.http_pkcs12:
            # Check the given PKCS#12 files
            self.check_pkcs12(options.http_pkcs12, options.http_pin)
            self.check_pkcs12(options.dirsrv_pkcs12, options.dirsrv_pin)

        config_dir = dsinstance.config_dirname(
            dsinstance.realm_to_serverid(api.env.realm))
        if not ipautil.dir_exists(config_dir):
            raise admintool.ScriptError(
                "could not find directory instance: %s" % config_dir)

    def check_pkcs12(self, pkcs12_file, pkcs12_pin):
        pin_file = ipautil.write_tmp_file(pkcs12_pin)
        installutils.check_pkcs12(
            pkcs12_info=(pkcs12_file, pin_file.name),
            ca_file='/etc/ipa/ca.crt',
            hostname=self.replica_fqdn)

    def ask_for_options(self):
        options = self.options
        super(ReplicaPrepare, self).ask_for_options()

        # get the directory manager password
        self.dirman_password = options.password
        if not options.password:
            self.dirman_password = installutils.read_password(
                "Directory Manager (existing master)",
                confirm=False, validate=False)
            if self.dirman_password is None:
                raise admintool.ScriptError(
                    "Directory Manager password required")

        # Try out the password & get the subject base
        suffix = ipautil.realm_to_suffix(api.env.realm)
        try:
            conn = ldap2(shared_instance=False, base_dn=suffix)
            conn.connect(bind_dn=DN(('cn', 'directory manager')),
                         bind_pw=self.dirman_password)
            dn, entry_attrs = conn.get_ipa_config()
            conn.disconnect()
        except errors.ACIError:
            raise admintool.ScriptError("The password provided is incorrect "
                "for LDAP server %s" % api.env.host)
        except errors.LDAPError:
            raise admintool.ScriptError(
                "Unable to connect to LDAP server %s" % api.env.host)
        except errors.DatabaseError, e:
            raise admintool.ScriptError(e.desc)

        self.subject_base = entry_attrs.get(
            'ipacertificatesubjectbase', [None])[0]
        if self.subject_base is not None:
            self.subject_base = DN(self.subject_base)

        # Validate more options using the password
        try:
            installutils.verify_fqdn(self.replica_fqdn, local_hostname=False)
        except installutils.BadHostError, e:
            msg = str(e)
            if isinstance(e, installutils.HostLookupError):
                if options.ip_address is None:
                    if dns_container_exists(
                            api.env.host, api.env.basedn,
                            dm_password=self.dirman_password,
                            ldapi=True, realm=api.env.realm):
                        self.log.info('Add the --ip-address argument to '
                            'create a DNS entry.')
                    raise
                else:
                    # The host doesn't exist in DNS but we're adding it.
                    pass
            else:
                raise

        if options.ip_address:
            if not dns_container_exists(api.env.host, api.env.basedn,
                                        dm_password=self.dirman_password,
                                        ldapi=True, realm=api.env.realm):
                raise admintool.ScriptError("You can't add a DNS record "
                    "because DNS is not set up.")
            if options.reverse_zone and not bindinstance.verify_reverse_zone(
                    options.reverse_zone, options.ip_address):
                raise admintool.ScriptError("Invalid reverse zone")

        if (not ipautil.file_exists(
                    dogtag.configured_constants().CS_CFG_PATH) and
                not options.dirsrv_pin):
            self.log.info("If you installed IPA with your own certificates "
                "using PKCS#12 files you must provide PKCS#12 files for any "
                "replicas you create as well.")
            raise admintool.ScriptError("The replica must be created on the "
                "primary IPA server.")

    def run(self):
        options = self.options
        super(ReplicaPrepare, self).run()

        self.log.info("Preparing replica for %s from %s",
            self.replica_fqdn, api.env.host)
        enable_replication_version_checking(api.env.host, api.env.realm,
            self.dirman_password)

        self.top_dir = tempfile.mkdtemp("ipa")
        self.dir = os.path.join(self.top_dir, "realm_info")
        os.mkdir(self.dir, 0700)
        try:
            self.copy_ds_certificate()

            self.copy_httpd_certificate()

            if options.setup_pkinit:
                self.copy_pkinit_certificate()

            self.copy_misc_files()

            self.save_config()

            self.package_replica_file()
        finally:
            shutil.rmtree(self.top_dir)

        if options.ip_address:
            self.add_dns_records()

    def copy_ds_certificate(self):
        options = self.options

        passwd_fname = os.path.join(self.dir, "dirsrv_pin.txt")
        with open(passwd_fname, "w") as fd:
            fd.write("%s\n" % (options.dirsrv_pin or ''))

        if options.dirsrv_pkcs12:
            self.log.info(
                "Copying SSL certificate for the Directory Server from %s",
                options.dirsrv_pkcs12)
            self.copy_info_file(options.dirsrv_pkcs12, "dscert.p12")
        else:
            if ipautil.file_exists(options.ca_file):
                self.copy_info_file(options.ca_file, "cacert.p12")
            else:
                raise admintool.ScriptError("Root CA PKCS#12 not "
                    "found in %s" % options.ca_file)

            self.log.info(
                "Creating SSL certificate for the Directory Server")
            self.export_certdb("dscert", passwd_fname)

        if not options.dirsrv_pkcs12:
            self.log.info(
                "Creating SSL certificate for the dogtag Directory Server")
            self.export_certdb("dogtagcert", passwd_fname)
            self.log.info("Saving dogtag Directory Server port")
            port_fname = os.path.join(
                self.dir, "dogtag_directory_port.txt")
            with open(port_fname, "w") as fd:
                fd.write("%s\n" % str(dogtag.configured_constants().DS_PORT))

    def copy_httpd_certificate(self):
        options = self.options

        passwd_fname = os.path.join(self.dir, "http_pin.txt")
        with open(passwd_fname, "w") as fd:
            fd.write("%s\n" % (options.http_pin or ''))

        if options.http_pkcs12:
            self.log.info(
                "Copying SSL certificate for the Web Server from %s",
                options.http_pkcs12)
            self.copy_info_file(options.http_pkcs12, "httpcert.p12")
        else:
            self.log.info("Creating SSL certificate for the Web Server")
            self.export_certdb("httpcert", passwd_fname)

            self.log.info("Exporting RA certificate")
            self.export_ra_pkcs12()

    def copy_pkinit_certificate(self):
        options = self.options

        passwd_fname = os.path.join(self.dir, "pkinit_pin.txt")
        with open(passwd_fname, "w") as fd:
            fd.write("%s\n" % (options.pkinit_pin or ''))

        if options.pkinit_pkcs12:
            self.log.info(
                "Copying SSL certificate for the KDC from %s",
                options.pkinit_pkcs12)
            self.copy_info_file(options.pkinit_pkcs12, "pkinitcert.p12")
        else:
            self.log.info("Creating SSL certificate for the KDC")
            self.export_certdb("pkinitcert", passwd_fname, is_kdc=True)

    def copy_misc_files(self):
        self.log.info("Copying additional files")

        self.copy_info_file("/etc/ipa/ca.crt", "ca.crt")
        preferences_filename = "/usr/share/ipa/html/preferences.html"
        if ipautil.file_exists(preferences_filename):
            self.copy_info_file(preferences_filename, "preferences.html")
            self.copy_info_file("/usr/share/ipa/html/krb.js", "krb.js")
            self.copy_info_file(
                "/usr/share/ipa/html/kerberosauth.xpi", "kerberosauth.xpi")
            self.copy_info_file(
                "/usr/share/ipa/html/configure.jar", "configure.jar")
        cacert_filename = "/var/kerberos/krb5kdc/cacert.pem"
        if ipautil.file_exists(cacert_filename):
            self.copy_info_file(cacert_filename, "cacert.pem")

    def save_config(self):
        self.log.info("Finalizing configuration")

        config = SafeConfigParser()
        config.add_section("realm")
        config.set("realm", "realm_name", api.env.realm)
        config.set("realm", "master_host_name", api.env.host)
        config.set("realm", "domain_name", api.env.domain)
        config.set("realm", "destination_host", self.replica_fqdn)
        config.set("realm", "subject_base", str(self.subject_base))
        config.set("realm", "version", str(version.NUM_VERSION))

        with open(os.path.join(self.dir, "realm_info"), "w") as fd:
            config.write(fd)

    def package_replica_file(self):
        replicafile = "/var/lib/ipa/replica-info-%s" % self.replica_fqdn
        encfile = "%s.gpg" % replicafile

        self.log.info("Packaging replica information into %s", encfile)
        ipautil.run(
            ["/bin/tar", "cf", replicafile, "-C", self.top_dir, "realm_info"])
        ipautil.encrypt_file(
            replicafile, encfile, self.dirman_password, self.top_dir)

        os.chmod(encfile, 0600)

        installutils.remove_file(replicafile)

    def add_dns_records(self):
        options = self.options

        self.log.info("Adding DNS records for %s", self.replica_fqdn)
        api.Backend.ldap2.connect(
            bind_dn=DN(('cn', 'Directory Manager')),
            bind_pw=self.dirman_password)

        name, domain = self.replica_fqdn.split(".", 1)

        ip = options.ip_address
        ip_address = str(ip)

        if options.reverse_zone:
            reverse_zone = bindinstance.normalize_zone(options.reverse_zone)
        else:
            reverse_zone = bindinstance.find_reverse_zone(ip)
            if reverse_zone is None and not options.no_reverse:
                reverse_zone = bindinstance.get_reverse_zone_default(ip)

        try:
            add_zone(domain)
        except errors.PublicError, e:
            raise admintool.ScriptError(
                "Could not create forward DNS zone for the replica: %s" % e)

        try:
            add_fwd_rr(domain, name, ip_address)
        except errors.PublicError, e:
            raise admintool.ScriptError(
                "Could not add forward DNS record for the replica: %s" % e)

        if reverse_zone is not None:
            self.log.info("Using reverse zone %s", reverse_zone)
            try:
                add_zone(reverse_zone)
            except errors.PublicError, e:
                raise admintool.ScriptError(
                    "Could not create reverse DNS zone for replica: %s" % e)
            try:
                add_ptr_rr(reverse_zone, ip_address, self.replica_fqdn)
            except errors.PublicError, e:
                raise admintool.ScriptError(
                    "Could not add reverse DNS record for the replica: %s" % e)

    def copy_info_file(self, source, dest):
        """Copy a file into the info directory

        :param source: The source file (an absolute path)
        :param dest: The destination file (relative to the info directory)
        """
        dest_path = os.path.join(self.dir, dest)
        self.log.debug('Copying %s to %s', source, dest_path)
        try:
            shutil.copy(source, dest_path)
        except IOError, e:
            raise admintool.ScriptError("File copy failed: %s" % e)

    def remove_info_file(self, filename):
        """Remove a file from the info directory

        :param filename: The unneeded file (relative to the info directory)
        """
        installutils.remove_file(os.path.join(self.dir, filename))

    def export_certdb(self, fname, passwd_fname, is_kdc=False):
        """Export a cert database

        :param fname: The file to export to (relative to the info directory)
        :param passwd_fname: File that holds the cert DB password
        :param is_kdc: True if we're exporting KDC certs
        """
        options = self.options
        hostname = self.replica_fqdn
        subject_base = self.subject_base

        if is_kdc:
            nickname = "KDC-Cert"
        else:
            nickname = "Server-Cert"

        try:
            db = certs.CertDB(
                api.env.realm, nssdir=self.dir, subject_base=subject_base)
            db.create_passwd_file()
            ca_db = certs.CertDB(
                api.env.realm, host_name=api.env.host,
                subject_base=subject_base)
            db.create_from_cacert(ca_db.cacert_fname)
            db.create_server_cert(nickname, hostname, ca_db)

            pkcs12_fname = os.path.join(self.dir, fname + ".p12")

            try:
                if is_kdc:
                    ca_db.export_pem_p12(pkcs12_fname, passwd_fname,
                        nickname, os.path.join(self.dir, "kdc.pem"))
                else:
                    db.export_pkcs12(pkcs12_fname, passwd_fname, nickname)
            except ipautil.CalledProcessError, e:
                self.log.info("error exporting Server certificate: %s", e)
                installutils.remove_file(pkcs12_fname)
                installutils.remove_file(passwd_fname)

            self.remove_info_file("cert8.db")
            self.remove_info_file("key3.db")
            self.remove_info_file("secmod.db")
            self.remove_info_file("noise.txt")

            if is_kdc:
                self.remove_info_file("kdc.pem")

            orig_filename = passwd_fname + ".orig"
            if ipautil.file_exists(orig_filename):
                installutils.remove_file(orig_filename)
        except errors.CertificateOperationError, e:
            raise admintool.ScriptError(str(e))

    def export_ra_pkcs12(self):
        agent_fd, agent_name = tempfile.mkstemp()
        os.write(agent_fd, self.dirman_password)
        os.close(agent_fd)

        try:
            db = certs.CertDB(api.env.realm, host_name=api.env.host)

            if db.has_nickname("ipaCert"):
                pkcs12_fname = os.path.join(self.dir, "ra.p12")
                db.export_pkcs12(pkcs12_fname, agent_name, "ipaCert")
        finally:
            os.remove(agent_name)
n> bool support_enhanced_framing_mode; u8 vs_level; u8 pe_level; }; /** * struct dp_tx - Private data structure of LogiCore DP TX devices * * @base: Address of register base of device * @s_axi_clk: The AXI clock frequency in Hz * @train_adaptive: Use adaptive link trainig (i.e. successively reduce * link rate and/or lane count) for this device * @max_link_rate: Maximum link rate for this device * @max_lane_count: Maximum lane count for this device * @dpcd_rx_caps: RX device's status registers, see below * @lane_status_ajd_reqs: Lane status and adjustment requests information for * this device * @link_config: The link configuration for this device * @main_stream_attributes: MSA set for this device * * dpcd_rx_caps is a raw read of the RX device's status registers. The first 4 * bytes correspond to the lane status associated with clock recovery, channel * equalization, symbol lock, and interlane alignment. The remaining 2 bytes * represent the pre-emphasis and voltage swing level adjustments requested by * the RX device. */ struct dp_tx { u32 base; u32 s_axi_clk; bool train_adaptive; u8 max_link_rate; u8 max_lane_count; u8 dpcd_rx_caps[16]; u8 lane_status_ajd_reqs[6]; struct link_config link_config; struct main_stream_attributes main_stream_attributes; }; /* * Internal API */ /** * get_reg() - Read a register of a LogiCore DP TX device * @dev: The LogiCore DP TX device in question * @reg: The offset of the register to read * * Return: The read register value */ static u32 get_reg(struct udevice *dev, u32 reg) { struct dp_tx *dp_tx = dev_get_priv(dev); u32 value = 0; int res; /* TODO(mario.six@gdsys.cc): error handling */ res = axi_read(dev->parent, dp_tx->base + reg, &value, AXI_SIZE_32); if (res < 0) printf("%s() failed; res = %d\n", __func__, res); return value; } /** * set_reg() - Write a register of a LogiCore DP TX device * @dev: The LogiCore DP TX device in question * @reg: The offset of the register to write * @value: The value to write to the register */ static void set_reg(struct udevice *dev, u32 reg, u32 value) { struct dp_tx *dp_tx = dev_get_priv(dev); axi_write(dev->parent, dp_tx->base + reg, &value, AXI_SIZE_32); } /** * is_connected() - Check if there is a connected RX device * @dev: The LogiCore DP TX device in question * * The Xilinx original calls msleep_interruptible at least once, ignoring * status. * * Return: true if a connected RX device was detected, false otherwise */ static bool is_connected(struct udevice *dev) { u8 retries = 0; do { int status = get_reg(dev, REG_INTERRUPT_SIG_STATE) & INTERRUPT_SIG_STATE_HPD_STATE_MASK; if (status) return true; udelay(1000); } while (retries++ < IS_CONNECTED_MAX_TIMEOUT_COUNT); return false; } /** * wait_phy_ready() - Wait for the DisplayPort PHY to come out of reset * @dev: The LogiCore DP TX device in question * @mask: Bit mask specifying which bit in the status register should be waited * for * * Return: 0 if wait succeeded, -ve if error occurred */ static int wait_phy_ready(struct udevice *dev, u32 mask) { u16 timeout = 20000; u32 phy_status; /* Wait until the PHY is ready. */ do { phy_status = get_reg(dev, REG_PHY_STATUS) & mask; /* Protect against an infinite loop. */ if (!timeout--) return -ETIMEDOUT; udelay(20); } while (phy_status != mask); return 0; } /* AUX channel access */ /** * aux_wait_ready() - Wait until another request is no longer in progress * @dev: The LogiCore DP TX device in question * * Return: 0 if wait succeeded, -ve if error occurred */ static int aux_wait_ready(struct udevice *dev) { int status; u32 timeout = 100; /* Wait until the DisplayPort TX core is ready. */ do { status = get_reg(dev, REG_INTERRUPT_SIG_STATE); /* Protect against an infinite loop. */ if (!timeout--) return -ETIMEDOUT; udelay(20); } while (status & REPLY_STATUS_REPLY_IN_PROGRESS_MASK); return 0; } /** * aux_wait_reply() - Wait for reply on AUX channel * @dev: The LogiCore DP TX device in question * * Wait for a reply indicating that the most recent AUX request * has been received by the RX device. * * Return: 0 if wait succeeded, -ve if error occurred */ static int aux_wait_reply(struct udevice *dev) { u32 timeout = 100; while (timeout > 0) { int status = get_reg(dev, REG_REPLY_STATUS); /* Check for error. */ if (status & REPLY_STATUS_REPLY_ERROR_MASK) return -ETIMEDOUT; /* Check for a reply. */ if ((status & REPLY_STATUS_REPLY_RECEIVED_MASK) && !(status & REPLY_STATUS_REQUEST_IN_PROGRESS_MASK) && !(status & REPLY_STATUS_REPLY_IN_PROGRESS_MASK)) { return 0; } timeout--; udelay(20); } return -ETIMEDOUT; } /** * aux_request_send() - Send request on the AUX channel * @dev: The LogiCore DP TX device in question * @request: The request to send * * Submit the supplied AUX request to the RX device over the AUX * channel by writing the command, the destination address, (the write buffer * for write commands), and the data size to the DisplayPort TX core. * * This is the lower-level sending routine, which is called by aux_request(). * * Return: 0 if request was sent successfully, -ve on error */ static int aux_request_send(struct udevice *dev, struct aux_transaction *request) { u32 timeout_count; int status; u8 index; /* Ensure that any pending AUX transactions have completed. */ timeout_count = 0; do { status = get_reg(dev, REG_REPLY_STATUS); udelay(20); timeout_count++; if (timeout_count >= AUX_MAX_TIMEOUT_COUNT) return -ETIMEDOUT; } while ((status & REPLY_STATUS_REQUEST_IN_PROGRESS_MASK) || (status & REPLY_STATUS_REPLY_IN_PROGRESS_MASK)); set_reg(dev, REG_AUX_ADDRESS, request->address); if (request->cmd_code == AUX_CMD_WRITE || request->cmd_code == AUX_CMD_I2C_WRITE || request->cmd_code == AUX_CMD_I2C_WRITE_MOT) { /* Feed write data into the DisplayPort TX core's write FIFO. */ for (index = 0; index < request->num_bytes; index++) { set_reg(dev, REG_AUX_WRITE_FIFO, request->data[index]); } } /* Submit the command and the data size. */ set_reg(dev, REG_AUX_CMD, ((request->cmd_code << AUX_CMD_SHIFT) | ((request->num_bytes - 1) & AUX_CMD_NBYTES_TRANSFER_MASK))); /* Check for a reply from the RX device to the submitted request. */ status = aux_wait_reply(dev); if (status) /* Waiting for a reply timed out. */ return -ETIMEDOUT; /* Analyze the reply. */ status = get_reg(dev, REG_AUX_REPLY_CODE); if (status == AUX_REPLY_CODE_DEFER || status == AUX_REPLY_CODE_I2C_DEFER) { /* The request was deferred. */ return -EAGAIN; } else if ((status == AUX_REPLY_CODE_NACK) || (status == AUX_REPLY_CODE_I2C_NACK)) { /* The request was not acknowledged. */ return -EIO; } /* The request was acknowledged. */ if (request->cmd_code == AUX_CMD_READ || request->cmd_code == AUX_CMD_I2C_READ || request->cmd_code == AUX_CMD_I2C_READ_MOT) { /* Wait until all data has been received. */ timeout_count = 0; do { status = get_reg(dev, REG_REPLY_DATA_COUNT); udelay(100); timeout_count++; if (timeout_count >= AUX_MAX_TIMEOUT_COUNT) return -ETIMEDOUT; } while (status != request->num_bytes); /* Obtain the read data from the reply FIFO. */ for (index = 0; index < request->num_bytes; index++) request->data[index] = get_reg(dev, REG_AUX_REPLY_DATA); } return 0; } /** * aux_request() - Submit request on the AUX channel * @dev: The LogiCore DP TX device in question * @request: The request to submit * * Submit the supplied AUX request to the RX device over the AUX * channel. If waiting for a reply times out, or if the DisplayPort TX core * indicates that the request was deferred, the request is sent again (up to a * maximum specified by AUX_MAX_DEFER_COUNT|AUX_MAX_TIMEOUT_COUNT). * * Return: 0 if request was submitted successfully, -ve on error */ static int aux_request(struct udevice *dev, struct aux_transaction *request) { u32 defer_count = 0; u32 timeout_count = 0; while ((defer_count < AUX_MAX_DEFER_COUNT) && (timeout_count < AUX_MAX_TIMEOUT_COUNT)) { int status = aux_wait_ready(dev); if (status) { /* The RX device isn't ready yet. */ timeout_count++; continue; } status = aux_request_send(dev, request); if (status == -EAGAIN) { /* The request was deferred. */ defer_count++; } else if (status == -ETIMEDOUT) { /* Waiting for a reply timed out. */ timeout_count++; } else { /* * -EIO indicates that the request was NACK'ed, * 0 indicates that the request was ACK'ed. */ return status; } udelay(100); } /* The request was not successfully received by the RX device. */ return -ETIMEDOUT; } /** * aux_common() - Common (read/write) AUX communication transmission * @dev: The LogiCore DP TX device in question * @cmd_type: Command code of the transaction * @address: The DPCD address of the transaction * @num_bytes: Number of bytes in the payload data * @data: The payload data of the AUX command * * Common sequence of submitting an AUX command for AUX read, AUX write, * I2C-over-AUX read, and I2C-over-AUX write transactions. If required, the * reads and writes are split into multiple requests, each acting on a maximum * of 16 bytes. * * Return: 0 if OK, -ve on error */ static int aux_common(struct udevice *dev, u32 cmd_type, u32 address, u32 num_bytes, u8 *data) { struct aux_transaction request; u32 bytes_left; /* * Set the start address for AUX transactions. For I2C transactions, * this is the address of the I2C bus. */ request.address = address; bytes_left = num_bytes; while (bytes_left) { int status; request.cmd_code = cmd_type; if (cmd_type == AUX_CMD_READ || cmd_type == AUX_CMD_WRITE) { /* Increment address for normal AUX transactions. */ request.address = address + (num_bytes - bytes_left); } /* Increment the pointer to the supplied data buffer. */ request.data = &data[num_bytes - bytes_left]; request.num_bytes = (bytes_left > 16) ? 16 : bytes_left; bytes_left -= request.num_bytes; if (cmd_type == AUX_CMD_I2C_READ && bytes_left) { /* * Middle of a transaction I2C read request. Override * the command code that was set to cmd_type. */ request.cmd_code = AUX_CMD_I2C_READ_MOT; } else if ((cmd_type == AUX_CMD_I2C_WRITE) && bytes_left) { /* * Middle of a transaction I2C write request. Override * the command code that was set to cmd_type. */ request.cmd_code = AUX_CMD_I2C_WRITE_MOT; } status = aux_request(dev, &request); if (status) return status; } return 0; } /** * aux_read() - Issue AUX read request * @dev: The LogiCore DP TX device in question * @dpcd_address: The DPCD address to read from * @bytes_to_read: Number of bytes to read * @read_data: Buffer to receive the read data * * Issue a read request over the AUX channel that will read from the RX * device's DisplayPort Configuration data (DPCD) address space. The read * message will be divided into multiple transactions which read a maximum of * 16 bytes each. * * Return: 0 if read operation was successful, -ve on error */ static int aux_read(struct udevice *dev, u32 dpcd_address, u32 bytes_to_read, void *read_data) { int status; if (!is_connected(dev)) return -ENODEV; /* Send AUX read transaction. */ status = aux_common(dev, AUX_CMD_READ, dpcd_address, bytes_to_read, (u8 *)read_data); return status; } /** * aux_write() - Issue AUX write request * @dev: The LogiCore DP TX device in question * @dpcd_address: The DPCD address to write to * @bytes_to_write: Number of bytes to write * @write_data: Buffer containig data to be written * * Issue a write request over the AUX channel that will write to * the RX device's DisplayPort Configuration data (DPCD) address space. The * write message will be divided into multiple transactions which write a * maximum of 16 bytes each. * * Return: 0 if write operation was successful, -ve on error */ static int aux_write(struct udevice *dev, u32 dpcd_address, u32 bytes_to_write, void *write_data) { int status; if (!is_connected(dev)) return -ENODEV; /* Send AUX write transaction. */ status = aux_common(dev, AUX_CMD_WRITE, dpcd_address, bytes_to_write, (u8 *)write_data); return status; } /* Core initialization */ /** * initialize() - Initialize a LogiCore DP TX device * @dev: The LogiCore DP TX device in question * * Return: Always 0 */ static int initialize(struct udevice *dev) { struct dp_tx *dp_tx = dev_get_priv(dev); u32 val; u32 phy_config; unsigned int k; /* place the PHY (and GTTXRESET) into reset. */ phy_config = get_reg(dev, REG_PHY_CONFIG); set_reg(dev, REG_PHY_CONFIG, phy_config | PHY_CONFIG_GT_ALL_RESET_MASK); /* reset the video streams and AUX logic. */ set_reg(dev, REG_SOFT_RESET, SOFT_RESET_VIDEO_STREAM_ALL_MASK | SOFT_RESET_AUX_MASK); /* disable the DisplayPort TX core. */ set_reg(dev, REG_ENABLE, 0); /* set the clock divider. */ val = get_reg(dev, REG_AUX_CLK_DIVIDER); val &= ~AUX_CLK_DIVIDER_VAL_MASK; val |= dp_tx->s_axi_clk / 1000000; set_reg(dev, REG_AUX_CLK_DIVIDER, val); /* set the DisplayPort TX core's clock speed. */ set_reg(dev, REG_PHY_CLOCK_SELECT, PHY_CLOCK_SELECT_DEFAULT); /* bring the PHY (and GTTXRESET) out of reset. */ set_reg(dev, REG_PHY_CONFIG, phy_config & ~PHY_CONFIG_GT_ALL_RESET_MASK); /* enable the DisplayPort TX core. */ set_reg(dev, REG_ENABLE, 1); /* Unmask Hot-Plug-Detect (HPD) interrupts. */ set_reg(dev, REG_INTERRUPT_MASK, ~INTERRUPT_MASK_HPD_PULSE_DETECTED_MASK & ~INTERRUPT_MASK_HPD_EVENT_MASK & ~INTERRUPT_MASK_HPD_IRQ_MASK); for (k = 0; k < 4; k++) { /* Disable pre-cursor levels. */ set_reg(dev, REG_PHY_PRECURSOR_LANE_0 + 4 * k, 0); /* Write default voltage swing levels to the TX registers. */ set_reg(dev, REG_PHY_VOLTAGE_DIFF_LANE_0 + 4 * k, 0); /* Write default pre-emphasis levels to the TX registers. */ set_reg(dev, REG_PHY_POSTCURSOR_LANE_0 + 4 * k, 0); } return 0; } /** * is_link_rate_valid() - Check if given link rate is valif for device * @dev: The LogiCore DP TX device in question * @link_rate: The link rate to be checked for validity * * Return: true if he supplied link rate is valid, false otherwise */ static bool is_link_rate_valid(struct udevice *dev, u8 link_rate) { struct dp_tx *dp_tx = dev_get_priv(dev); bool valid = true; if (link_rate != LINK_BW_SET_162GBPS && link_rate != LINK_BW_SET_270GBPS && link_rate != LINK_BW_SET_540GBPS) valid = false; else if (link_rate > dp_tx->link_config.max_link_rate) valid = false; return valid; } /** * is_lane_count_valid() - Check if given lane count is valif for device * @dev: The LogiCore DP TX device in question * @lane_count: The lane count to be checked for validity * * Return: true if he supplied lane count is valid, false otherwise */ static bool is_lane_count_valid(struct udevice *dev, u8 lane_count) { struct dp_tx *dp_tx = dev_get_priv(dev); bool valid = true; if (lane_count != LANE_COUNT_SET_1 && lane_count != LANE_COUNT_SET_2 && lane_count != LANE_COUNT_SET_4) valid = false; else if (lane_count > dp_tx->link_config.max_lane_count) valid = false; return valid; } /** * get_rx_capabilities() - Check if capabilities of RX device are valid for TX * device * @dev: The LogiCore DP TX device in question * * Return: 0 if the capabilities of the RX device are valid for the TX device, * -ve if not, of an error occurred during capability determination */ static int get_rx_capabilities(struct udevice *dev) { struct dp_tx *dp_tx = dev_get_priv(dev); int status; u8 rx_max_link_rate; u8 rx_max_lane_count; if (!is_connected(dev)) return -ENODEV; status = aux_read(dev, DPCD_RECEIVER_CAP_FIELD_START, 16, dp_tx->dpcd_rx_caps); if (status) return -EIO; rx_max_link_rate = dp_tx->dpcd_rx_caps[DPCD_MAX_LINK_RATE]; rx_max_lane_count = dp_tx->dpcd_rx_caps[DPCD_MAX_LANE_COUNT] & DPCD_MAX_LANE_COUNT_MASK; dp_tx->link_config.max_link_rate = (rx_max_link_rate > dp_tx->max_link_rate) ? dp_tx->max_link_rate : rx_max_link_rate; if (!is_link_rate_valid(dev, rx_max_link_rate)) return -EINVAL; dp_tx->link_config.max_lane_count = (rx_max_lane_count > dp_tx->max_lane_count) ? dp_tx->max_lane_count : rx_max_lane_count; if (!is_lane_count_valid(dev, rx_max_lane_count)) return -EINVAL; dp_tx->link_config.support_enhanced_framing_mode = dp_tx->dpcd_rx_caps[DPCD_MAX_LANE_COUNT] & DPCD_ENHANCED_FRAME_SUPPORT_MASK; return 0; } /** * enable_main_link() - Switch on main link for a device * @dev: The LogiCore DP TX device in question */ static void enable_main_link(struct udevice *dev) { /* reset the scrambler. */ set_reg(dev, REG_FORCE_SCRAMBLER_RESET, 0x1); /* enable the main stream. */ set_reg(dev, REG_ENABLE_MAIN_STREAM, 0x1); } /** * disable_main_link() - Switch off main link for a device * @dev: The LogiCore DP TX device in question */ static void disable_main_link(struct udevice *dev) { /* reset the scrambler. */ set_reg(dev, REG_FORCE_SCRAMBLER_RESET, 0x1); /* Disable the main stream. */ set_reg(dev, REG_ENABLE_MAIN_STREAM, 0x0); } /** * reset_dp_phy() - Reset a device * @dev: The LogiCore DP TX device in question * @reset: Bit mask determining which bits in the device's config register * should be set for the reset */ static void reset_dp_phy(struct udevice *dev, u32 reset) { struct dp_tx *dp_tx = dev_get_priv(dev); u32 val; set_reg(dev, REG_ENABLE, 0x0); val = get_reg(dev, REG_PHY_CONFIG); /* Apply reset. */ set_reg(dev, REG_PHY_CONFIG, val | reset); /* Remove reset. */ set_reg(dev, REG_PHY_CONFIG, val); /* Wait for the PHY to be ready. */ wait_phy_ready(dev, phy_status_lanes_ready_mask(dp_tx->max_lane_count)); set_reg(dev, REG_ENABLE, 0x1); } /** * set_enhanced_frame_mode() - Enable/Disable enhanced frame mode * @dev: The LogiCore DP TX device in question * @enable: Flag to determine whether to enable (1) or disable (0) the enhanced * frame mode * * Enable or disable the enhanced framing symbol sequence for * both the DisplayPort TX core and the RX device. * * Return: 0 if enabling/disabling the enhanced frame mode was successful, -ve * on error */