DS26528トランシーバの初期化と設定

要約

このアプリケーションノートは、T1、E1、J1トランシーバのDS26524およびDS26828の適切な設定方法について説明します。このアプリケーションノートはCスタイルコード例を収録し、設計者が基本システム動作を迅速に完成することによって、初期のソフトウェア開発を容易にします。

はじめに

新規設計の通信システム用のソフトウェアを開発する際に、基本デバイス動作を完成する作業は通常、最も困難な作業です。DS26528トランシーバは、機能およびマルチポート動作の複雑な幅広いセットを追加しています。システムを立ち上げ稼働させる初期の障害を軽減するために、マキシムは、T1またはE1モードでの基本動作用にデバイスを初期化するCコードスタイル例を作成しました。ソフトウェア開発者は、希望する動作のコードを修正し、システムに依存する2つの機能のコードを記述するだけです。コードをコンパイルすると、試験および評価用にシステムにロードする準備ができているはずです。

コード例

図1の以下のコード例は、対象システムで使用するために適切にコンパイルするには、少し修正が必要です。関数呼出しの「write(address, data)」と「wait(milliseconds)」のコードはシステムに依存するため、現行のマイクロプロセッサ環境に合わせて記述する必要があります。このコードは、デバイスがアドレスオフセット0x0000で16ビットローカルバスにマッピングされ、デバイスデータバスはわずか8ビットであることを仮定しています。そうでない場合は、コードを修正するか、またはこれを説明する関数呼出しを記述することができます。また、コードは特定レジスタ用の多数の各種設定も備え、開発者にクロック周波数、ラインコーディングなどのアイテム用の複数オプションを提供します。コードは広範囲な基本機能に対応していますが、決して完璧ではありません。その他の希望する機能については、データシートを参照する必要があります。
/*
   Configuration Example For DS26528 running in E1 mode.

   This Example assumes E1 operation so the function call for T1 configuration
   has been commented out. Simply comment out the E1 configuration function
   call and uncomment the T1 configuration function call for T1 operation.

   This file follows C style conventions. However actual code for the function
   calls listed below are implementation specific and need to be added:

   Function Calls: write(address, data), wait(milliseconds)


   The following comments only indicate some of the possible clock sources
   that can be used for either E1 or T1 operation.

   Master clock configuration can use multiples of n = 1, 2, 4, or 8
   MCLK = Must be a n x 2.048 MHz signal for E1 Operation
   MCLK = Must be a n x 1.544 or n x 2.048 MHz signal for T1 Operation

   TCLK = Must be a 2.048 MHz Signal for E1 Operation
   TCLK = Must be a 1.544 MHz signal for T1 Operation
*/

void initialization_main()
{
    /* Global Initialization Begin */

    /* The Global Transceiver Clock Control Register is important for proper */
    /* device operation consult the data sheet for all possible configurations. */
    write(0x00F3, 0x00); // GTCCR, E1 Mode MCLK-2.048, BPFS-2.048, BPREF-RCLK1
    // write(0x00F3, 0x01); // GTCCR, E1 Mode MCLK-4.096, BPFS-2.048, BPREF-RCLK1
    // write(0x00F3, 0x02); // GTCCR, E1 Mode MCLK-8.192, BPFS-2.048, BPREF-RCLK1
    // write(0x00F3, 0x03); // GTCCR, E1 Mode MCLK-16.384, BPFS-2.048, BPREF-RCLK1

    // write(0x00F3, 0x08); // GTCCR, T1 Mode MCLK-2.048, BPFS-1.544, BPREF-RCLK1
    // write(0x00F3, 0x09); // GTCCR, T1 Mode MCLK-4.096, BPFS-1.544, BPREF-RCLK1
    // write(0x00F3, 0x0A); // GTCCR, T1 Mode MCLK-8.192, BPFS-1.544, BPREF-RCLK1
    // write(0x00F3, 0x0B); // GTCCR, T1 Mode MCLK-16.384, BPFS-1.544, BPREF-RCLK1

    // write(0x00F3, 0x0C); // GTCCR, T1 Mode MCLK-1.544, BPFS-1.544, BPREF-RCLK1
    // write(0x00F3, 0x0D); // GTCCR, T1 Mode MCLK-3.088, BPFS-1.544, BPREF-RCLK1
    // write(0x00F3, 0x0E); // GTCCR, T1 Mode MCLK-6.176, BPFS-1.544, BPREF-RCLK1
    // write(0x00F3, 0x0F); // GTCCR, T1 Mode MCLK-12.352, BPFS-1.544, BPREF-RCLK1

    // write(0x00F3, 0x90); // GTCCR, E1 Mode MCLK-2.048, BPFS-2.048, BPREF-MCLK
    // write(0x00F3, 0x88); // GTCCR, T1 Mode MCLK-2.048, BPFS-1.544, BPREF-MCLK

    /* Wait 1 ms for clock to settle after configuration */
    wait (1);

    /* Configure global Framer multifunction pins, IBO, amd BPCLK. If IBO */
    /* mode is enabled, the RIBOC and TIBOC Framer registers must also be */
    /* configured on a per port basis instead of globally */
    write(0x00F1, 0x00); // GFCR, Set IBO Disabled, RFL/RFS/BLK, BPCLK-2.048
    // write(0x00F1, 0x10); // GFCR, Set IBO Disabled, RFL/RFS/BLK, BPCLK-4.096
    // write(0x00F1, 0x20); // GFCR, Set IBO Disabled, RFL/RFS/BLK, BPCLK-8.192
    // write(0x00F1, 0x30); // GFCR, Set IBO Disabled, RFL/RFS/BLK, BPCLK-16.384

    // write(0x00F1, 0x50); // GFCR, Set IBO 2 Devices, RFL/RFS/BLK, BPCLK-4.096
    // write(0x00F1, 0xA0); // GFCR, Set IBO 4 Devices, RFL/RFS/BLK, BPCLK-8.192
    // write(0x00F1, 0xF0); // GFCR, Set IBO 8 Devices, RFL/RFS/BLK, BPCLK-16.384

    /* Enable Bulk Write to reduce Framer, LIU, and Bert initialization time. */
    write(0x00F0, 0x04); // GTCR1, Enable Global Bulk Write

    /* Perform global LIU, Framer, and BERT software reset */
    write(0x00F5, 0xFF); // GLSRR
    write(0x00F6, 0xFF); // GFSRR
    /* Wait 10 ms for reset to complete */
    wait(10);
    write(0x00F5, 0x00); // GLSRR
    write(0x00F6, 0x00); // GFSRR

    /* Perform individual Receive and Transmit Framer software reset. This */
    /* is not needed when using the Global Reset functions above. */
    // write(0x0080, 0x02); // RMMR
    // write(0x0180, 0x02); // TMMR
    /* wait 10 ms for reset to complete */
    // wait (10);
    // write(0x0080, 0x00); // RMMR
    // write(0x0180, 0x00); // TMMR

    /* Zero All Framer Registers */
    index = 0x0000;
    while(index < 0x00F0)
    {
       write(index, 0x00);
       index++;
    }

    index = 0x0100;
    while(index < 0x01F0)
    {
       write(index, 0x00);
       index++;
    }

    /* Zero All LIU Registers */
    index = 0x1000
    while(index < 0x1020)
    {
       write(index, 0x00);
       index++;
    }

    /* Zero All BERT Registers */
    index = 0x1100;
    while(index < 0x1110)
    {
       write(index, 0x00);
       index++;
    }

    /* Disable Bulk Write at end of initialization */
    write(0x00F0, 0x00); // GTCR1, Disable Global Bulk Write

    /* Initialization Complete */


    /* Configuration Begin */

    e1_configure();

    // t1_configure();

    /* Configuration Complete */
}

void e1_configure()
{
    /* E1 Initialization Begin */

    /* This function assumes all ports are configured identically. Otherwise, */
    /* remove the Global Bulk Write portion and rewrite the function to */
    /* support individual port addressing and identification. */

    /* Enable Bulk Write to reduce Framer and LIU configuration time. */
    write(0x00F0, 0x04); // GTCR1, Enable Global Bulk Write

    write(0x0080, 0x01); // RMMR, Set Receive Framer E1 Mode
    write(0x0180, 0x01); // TMMR, Set Transmit Framer E1 Mode
    write(0x0080, 0x81); // RMMR, Set Receive Framer E1 Mode and Framer Enable
    write(0x0180, 0x81); // TMMR, Set Transmit Framer E1 Mode and Framer Enable

    write(0x0081, 0x60); // RCR1, Set Receive E1 HDB3 (Basic Frame)
    // write(0x0081, 0x68); // RCR1, Set Receive E1 HDB3, CRC4, and CCS (TS 16 Clear)
    // write(0x0081, 0x48); // RCR1, Set Receive E1 HDB3, CRC4, and CAS

    write(0x0084, 0x10); // RIOCR, Set RSYNC Frame Output, RSYSCLK-2.048 MHz
    // write(0x0084, 0x11); // RIOCR, Set RSYNC CAS M-Frame Output, RSYSCLK-2.048 MHz
    // write(0x0084, 0x13); // RIOCR, Set RSYNC CRC4 M-Frame Output, RSYSCLK-2.048 MHz

    /* Note: In CCS mode, CAS can still be enabled through the SSIEx registers */
    /* Note: All TCR1 E1 configurations have Si bit pass through enabled */
    write(0x0181, 0x04); // TCR1, Set Transmit E1 HDB3 (Basic Frame)
    // write(0x0181, 0x05); // TCR1, Set Transmit E1 HDB3, CRC4, and CCS (TS 16 Clear)
    // write(0x0181, 0x45); // TCR1, Set Transmit E1 HDB3, CRC4, and CAS

    write(0x0184, 0x10); // TIOCR, Set TSYNC Frame Input, TSYSCLK-2.048 MHz
    // write(0x0184, 0x11); // TIOCR, Set TSYNC M-Frame Input, TSYSCLK-2.048 MHz
    // write(0x0184, 0x14); // TIOCR, Set TSYNC Frame Output, TSYSCLK-2.048 MHz
    // write(0x0184, 0x15); // TIOCR, Set TSYNC M-Frame Output, TSYSCLK-2.048 MHz

    /* Set the TAF and TNAF registers in E1 Mode Only */
    write(0x164, 0x1B);
    write(0x165, 0x40);

    /* Set the Transmit Signaling registers for E1 Mode */
    write(0x0140, 0x0B); // Set CAS Multiframe Sync Header
    index = 0x0141;
    while(index < 0x0150)
    {
       write(index, 0xDD);
       index++;
    }

    /* Set the Transmit Signaling Insertion Enable registers for E1 Mode */
    // write(0x0118, 0xFF); // SSIE1, Enable Transmit Signaling for channels 1-8
    // write(0x0119, 0xFF); // SSIE2, Enable Transmit Signaling for channels 9-16
    // write(0x011A, 0xFF); // SSIE3, Enable Transmit Signaling for channels 17-24
    // write(0x011B, 0xFF); // SSIE4, Enable Transmit Signaling for channels 18-32

    /* Set Framer or Payload Loopback if necessary  */
    // write(0x0083, 0x01); // RCR3, Set Framer Loopback
    // write(0x0083, 0x02); // RCR3, Set Payload Loopback

    /* Complete all Framer register configuration before the next step */
    write(0x0080, 0xC1); // RMMR, Set Receive Framer E1 Mode, Enable, and Init Done
    write(0x0180, 0xC1); // TMMR, Set Transmit Framer E1 Mode, Enable, and Init Done

    /* Configure LIU */
    write(0x1000, 0x00); // LTRCR, E1 Mode, ITU G.775, and Receive JA @ 128 bits
    // write(0x1000, 0x00); // LTRCR, E1 Mode, ETSI 300-233, and Receive JA @ 128 bits

    write(0x1001, 0x00); // LTITSR, E1 Mode 75 ohm w/Transmit Z-Term
    // write(0x1001, 0x31); // LTITSR, E1 Mode 120 ohm w/Transmit Z-Term

    write(0x1007, 0x03); // LRISMR, E1 Mode 75 ohm Long Haul w/Receive Z-Match
    // write(0x1007, 0x33); // LRISMR, E1 Mode 120 ohm Long Haul w/Receive Z-Match
    // write(0x1007, 0x00); // LRISMR, E1 Mode 75 ohm Short Haul w/Receive Z-Match
    // write(0x1007, 0x30); // LRISMR, E1 Mode 120 ohm Short Haul w/Receive Z-Match

    write(0x1002, 0x01); // LMCR, Enable Transmit Outputs
    // write(0x1002, 0x09); // LMCR, Enable Transmit Outputs and Remote Loopback
    // write(0x1002, 0x11); // LMCR, Enable Transmit Outputs and Analog Loopback
    // write(0x1002, 0x21); // LMCR, Enable Transmit Outputs and Local Loopback

    /* Disable Bulk Write at end of configuration */
    write(0x00F0, 0x00); // GTCR1, Disable Global Bulk Write
}

void t1_configure()
{
    /* T1 Initilization Begin */

    /* This function assumes all ports are configured identically. Otherwise, */
    /* remove the Global Bulk Write portion and rewrite the function to */
    /* support individual port addressing and identification. */

    /* Enable Bulk Write to reduce Framer and LIU configuration time. */
    write(0x00F0, 0x04); // GTCR1, Enable Global Bulk Write

    write(0x0080, 0x00); // RMMR, Set Receive Framer T1 Mode
    write(0x0180, 0x00); // TMMR, Set Transmit Framer T1 Mode
    write(0x0080, 0x80); // RMMR, Set Receive Framer T1 Mode and Framer Enable
    write(0x0180, 0x80); // TMMR, Set Transmit Framer T1 Mode and Framer Enable

    write(0x0081, 0xC8); // RCR1, Set Receive T1 B8ZS, ESF, CRC6 Verify
    // write(0x0081, 0xE8); // RCR1, Set Receive T1 B8ZS, D4, Ft & Fs Verify
    // write(0x0081, 0xCC); // RCR1, Set Receive J1 B8ZS, ESF, J-CRC6 Verify
    // write(0x0081, 0x68); // RCR1, Set Receive T1 B8ZS, SLC-96 (Also T1RCR2)

    // write(0x0014, 0x10); // T1RCR2, Set Receive T1, SLC-96

    write(0x0084, 0x10); // RIOCR, Set RSYNC Frame Output, RSYSCLK-2.048 MHz
    // write(0x0084, 0x11); // RIOCR, Set RSYNC M-Frame Output, RSYSCLK-2.048 MHz

    /* Note: All TCR1 T1/J1 configurations have SSIEx signaling control enabled */
    write(0x0181, 0x14); // TCR1, Set Transmit T1 B8ZS
    // write(0x0181, 0x94); // TCR1, Set Transmit J1 B8ZS, J-CRC6

    write(0x0183, 0x00); // TCR3, Set Transmit ESF
    // write(0x0183, 0x04); // TCR3, Set Transmit D4 or SLC-96 (Also TCR2)

    // write(0x0182, 0x40); // TCR2, Set Transmit SLC-96

    write(0x0184, 0x10); // TIOCR, Set TSYNC Frame Input, TSYSCLK-2.048 MHz
    // write(0x0184, 0x11); // TIOCR, Set TSYNC M-Frame Input, TSYSCLK-2.048 MHz
    // write(0x0184, 0x14); // TIOCR, Set TSYNC Frame Output, TSYSCLK-2.048 MHz
    // write(0x0184, 0x15); // TIOCR, Set TSYNC M-Frame Output, TSYSCLK-2.048 MHz

    /* Set the T1TFDL and T1TSLCx registers in T1 Mode Only */
    write(0x162, 0x1C); // T1TFDL, Source D4 Mode Fs Bits
    write(0x164, 0x00); // T1TSLC1, Source SLC-96 Mode C8-C1 Bits
    write(0x165, 0x10); // T1TSLC2, Source SLC-96 Mode M2-M1, Sp, and C11-C9 Bits
    write(0x166, 0x80); // T1TSLC3, Source SLC-96 Mode Sp, S4-S1, A2-A1, and M3 Bits

    /* Set the Transmit Signaling registers for T1 Mode */
    index = 0x0140;
    while(index < 0x014C)
    {
       write(index, 0xDD);
       index++;
    }

    /* Set the Transmit Signaling Insertion Enable registers for T1 Mode */
    // write(0x0118, 0xFF); // SSIE1, Enable Transmit Signaling for channels 1-8
    // write(0x0119, 0xFF); // SSIE2, Enable Transmit Signaling for channels 9-16
    // write(0x011A, 0xFF); // SSIE3, Enable Transmit Signaling for channels 17-24

    /* Configure Framer or Payload Loopback */
    // write(0x0083, 0x01); // RCR3, Set Framer Loopback
    // write(0x0083, 0x02); // RCR3, Set Payload Loopback

    /* Complete all Framer register configuration before the next step */
    write(0x0080, 0xC0); // RMMR, Set Receive Framer T1 Mode, Enable, and Init Done
    write(0x0180, 0xC0); // TMMR, Set Transmit Framer T1 Mode, Enable, and Init Done

    /* Configure LIU */
    write(0x1000, 0x02); // LTRCR, T1/J1 Mode, ANSI T1.231, and Receive JA @ 128 bits

    write(0x1001, 0x10); // LTITSR, T1 Mode 100 ohm 0dB CSU w/Transmit Z-Term
    // write(0x1001, 0x20); // LTITSR, J1 Mode 110 ohm 0dB CSU w/Transmit Z-Term

    write(0x1007, 0x13); // LRISMR, T1 Mode 100 ohm Long Haul w/Receive Z-Match
    // write(0x1007, 0x23); // LRISMR, J1 Mode 110 ohm Long Haul w/Receive Z-Match
    // write(0x1007, 0x10); // LRISMR, T1 Mode 100 ohm Short Haul w/Receive Z-Match
    // write(0x1007, 0x20); // LRISMR, J1 Mode 110 ohm Short Haul w/Receive Z-Match

    write(0x1002, 0x01); // LMCR, Enable Transmit Outputs
    // write(0x1002, 0x09); // LMCR, Enable Transmit Outputs and Remote Loopback
    // write(0x1002, 0x11); // LMCR, Enable Transmit Outputs and Analog Loopback
    // write(0x1002, 0x21); // LMCR, Enable Transmit Outputs and Local Loopback

    /* Disable Bulk Write at end of configuration */
    write(0x00F0, 0x00); // GTCR1, Disable Global Bulk Write
}
図1. DS26528トランシーバを初期化し、設定するコード

参考

LIUの初期化および設定に関してさらに質問がある場合は、 テレコムアプリケーションサポートチームにお問い合わせください。
オクタルT1/E1/J1トランシーバのDS26528に関する詳細については、マキシムのウェブサイトのT/Eキャリアおよびパケット化製品で入手可能な該当するデータシートをご参照ください。