00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 FILE_LICENCE ( GPL2_OR_LATER );
00021
00022 #include <stdint.h>
00023 #include <stdlib.h>
00024 #include <string.h>
00025 #include <unistd.h>
00026 #include <errno.h>
00027 #include <assert.h>
00028 #include <byteswap.h>
00029 #include <gpxe/pci.h>
00030 #include <gpxe/io.h>
00031 #include <gpxe/malloc.h>
00032 #include <gpxe/iobuf.h>
00033 #include <gpxe/netdevice.h>
00034 #include <gpxe/if_ether.h>
00035 #include <gpxe/ethernet.h>
00036 #include <gpxe/spi.h>
00037 #include <gpxe/settings.h>
00038 #include "phantom.h"
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048 #define PHN_MAX_NUM_PORTS 8
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064 #define PHN_CMDPEG_INIT_TIMEOUT_SEC 50
00065
00066
00067 #define PHN_RCVPEG_INIT_TIMEOUT_SEC 2
00068
00069
00070 #define PHN_ISSUE_CMD_TIMEOUT_MS 2000
00071
00072
00073 #define PHN_TEST_MEM_TIMEOUT_MS 100
00074
00075
00076 #define PHN_CLP_CMD_TIMEOUT_MS 500
00077
00078
00079
00080
00081
00082 #define PHN_LINK_POLL_FREQUENCY 4096
00083
00084
00085 #define PHN_NUM_RDS 32
00086
00087
00088 #define PHN_RDS_MAX_FILL 16
00089
00090
00091 #define PHN_RX_BUFSIZE ( 32 + \
00092 ETH_FRAME_LEN )
00093
00094
00095 #define PHN_NUM_SDS 32
00096
00097
00098 #define PHN_NUM_CDS 8
00099
00100
00101 struct phantom_descriptor_rings {
00102
00103 struct phantom_rds rds[PHN_NUM_RDS];
00104
00105 struct phantom_sds sds[PHN_NUM_SDS];
00106
00107 union phantom_cds cds[PHN_NUM_CDS];
00108
00109 volatile uint32_t cmd_cons;
00110 };
00111
00112
00113 struct phantom_create_rx_ctx_rqrsp {
00114 struct {
00115 struct nx_hostrq_rx_ctx_s rx_ctx;
00116 struct nx_hostrq_rds_ring_s rds;
00117 struct nx_hostrq_sds_ring_s sds;
00118 } __unm_dma_aligned hostrq;
00119 struct {
00120 struct nx_cardrsp_rx_ctx_s rx_ctx;
00121 struct nx_cardrsp_rds_ring_s rds;
00122 struct nx_cardrsp_sds_ring_s sds;
00123 } __unm_dma_aligned cardrsp;
00124 };
00125
00126
00127 struct phantom_create_tx_ctx_rqrsp {
00128 struct {
00129 struct nx_hostrq_tx_ctx_s tx_ctx;
00130 } __unm_dma_aligned hostrq;
00131 struct {
00132 struct nx_cardrsp_tx_ctx_s tx_ctx;
00133 } __unm_dma_aligned cardrsp;
00134 };
00135
00136
00137 struct phantom_nic {
00138
00139 void *bar0;
00140
00141 unsigned long crb_window;
00142
00143 unsigned long ( *crb_access ) ( struct phantom_nic *phantom,
00144 unsigned long reg );
00145
00146
00147
00148 unsigned int port;
00149
00150
00151
00152 uint16_t rx_context_id;
00153
00154 unsigned long rds_producer_crb;
00155
00156 unsigned long sds_consumer_crb;
00157
00158 unsigned long sds_irq_mask_crb;
00159
00160 unsigned int sds_irq_enabled;
00161
00162
00163 unsigned int rds_producer_idx;
00164
00165 unsigned int rds_consumer_idx;
00166
00167 unsigned int sds_consumer_idx;
00168
00169 struct io_buffer *rds_iobuf[PHN_RDS_MAX_FILL];
00170
00171
00172
00173 uint16_t tx_context_id;
00174
00175 unsigned long cds_producer_crb;
00176
00177
00178 unsigned int cds_producer_idx;
00179
00180 unsigned int cds_consumer_idx;
00181
00182 struct io_buffer *cds_iobuf[PHN_NUM_CDS];
00183
00184
00185
00186 struct phantom_descriptor_rings *desc;
00187
00188
00189
00190 uint32_t link_state;
00191
00192 unsigned long link_poll_timer;
00193
00194
00195
00196 struct settings settings;
00197 };
00198
00199
00200 static const unsigned long phantom_irq_mask_reg[PHN_MAX_NUM_PORTS] = {
00201 UNM_PCIE_IRQ_MASK_F0,
00202 UNM_PCIE_IRQ_MASK_F1,
00203 UNM_PCIE_IRQ_MASK_F2,
00204 UNM_PCIE_IRQ_MASK_F3,
00205 UNM_PCIE_IRQ_MASK_F4,
00206 UNM_PCIE_IRQ_MASK_F5,
00207 UNM_PCIE_IRQ_MASK_F6,
00208 UNM_PCIE_IRQ_MASK_F7,
00209 };
00210
00211
00212 static const unsigned long phantom_irq_status_reg[PHN_MAX_NUM_PORTS] = {
00213 UNM_PCIE_IRQ_STATUS_F0,
00214 UNM_PCIE_IRQ_STATUS_F1,
00215 UNM_PCIE_IRQ_STATUS_F2,
00216 UNM_PCIE_IRQ_STATUS_F3,
00217 UNM_PCIE_IRQ_STATUS_F4,
00218 UNM_PCIE_IRQ_STATUS_F5,
00219 UNM_PCIE_IRQ_STATUS_F6,
00220 UNM_PCIE_IRQ_STATUS_F7,
00221 };
00222
00223
00224
00225
00226
00227
00228
00229
00230
00231
00232
00233
00234
00235
00236 static unsigned long phantom_crb_access_128m ( struct phantom_nic *phantom,
00237 unsigned long reg ) {
00238 unsigned long offset = ( 0x6000000 + ( reg & 0x1ffffff ) );
00239 uint32_t window = ( reg & 0x2000000 );
00240 uint32_t verify_window;
00241
00242 if ( phantom->crb_window != window ) {
00243
00244
00245 writel ( window, phantom->bar0 + UNM_128M_CRB_WINDOW );
00246
00247
00248 verify_window = readl ( phantom->bar0 + UNM_128M_CRB_WINDOW );
00249 assert ( verify_window == window );
00250
00251
00252 phantom->crb_window = window;
00253 }
00254
00255 return offset;
00256 }
00257
00258
00259
00260
00261
00262
00263
00264
00265 static unsigned long phantom_crb_access_32m ( struct phantom_nic *phantom,
00266 unsigned long reg ) {
00267 unsigned long offset = ( reg & 0x1ffffff );
00268 uint32_t window = ( reg & 0x2000000 );
00269 uint32_t verify_window;
00270
00271 if ( phantom->crb_window != window ) {
00272
00273
00274 writel ( window, phantom->bar0 + UNM_32M_CRB_WINDOW );
00275
00276
00277 verify_window = readl ( phantom->bar0 + UNM_32M_CRB_WINDOW );
00278 assert ( verify_window == window );
00279
00280
00281 phantom->crb_window = window;
00282 }
00283
00284 return offset;
00285 }
00286
00287
00288
00289
00290
00291
00292
00293
00294 static unsigned long phantom_crb_access_2m ( struct phantom_nic *phantom,
00295 unsigned long reg ) {
00296 static const struct {
00297 uint8_t block;
00298 uint16_t window_hi;
00299 } reg_window_hi[] = {
00300 { UNM_CRB_BLK_PCIE, 0x773 },
00301 { UNM_CRB_BLK_CAM, 0x416 },
00302 { UNM_CRB_BLK_ROMUSB, 0x421 },
00303 { UNM_CRB_BLK_TEST, 0x295 },
00304 { UNM_CRB_BLK_PEG_0, 0x340 },
00305 { UNM_CRB_BLK_PEG_1, 0x341 },
00306 { UNM_CRB_BLK_PEG_2, 0x342 },
00307 { UNM_CRB_BLK_PEG_3, 0x343 },
00308 { UNM_CRB_BLK_PEG_4, 0x34b },
00309 };
00310 unsigned int block = UNM_CRB_BLK ( reg );
00311 unsigned long offset = UNM_CRB_OFFSET ( reg );
00312 uint32_t window;
00313 uint32_t verify_window;
00314 unsigned int i;
00315
00316 for ( i = 0 ; i < ( sizeof ( reg_window_hi ) /
00317 sizeof ( reg_window_hi[0] ) ) ; i++ ) {
00318
00319 if ( reg_window_hi[i].block != block )
00320 continue;
00321
00322 window = ( ( reg_window_hi[i].window_hi << 20 ) |
00323 ( offset & 0x000f0000 ) );
00324
00325 if ( phantom->crb_window != window ) {
00326
00327
00328 writel ( window, phantom->bar0 + UNM_2M_CRB_WINDOW );
00329
00330
00331 verify_window = readl ( phantom->bar0 +
00332 UNM_2M_CRB_WINDOW );
00333 assert ( verify_window == window );
00334
00335
00336 phantom->crb_window = window;
00337 }
00338
00339 return ( 0x1e0000 + ( offset & 0xffff ) );
00340 }
00341
00342 assert ( 0 );
00343 return 0;
00344 }
00345
00346
00347
00348
00349
00350
00351
00352
00353 static uint32_t phantom_readl ( struct phantom_nic *phantom,
00354 unsigned long reg ) {
00355 unsigned long offset;
00356
00357 offset = phantom->crb_access ( phantom, reg );
00358 return readl ( phantom->bar0 + offset );
00359 }
00360
00361
00362
00363
00364
00365
00366
00367
00368 static void phantom_writel ( struct phantom_nic *phantom, uint32_t value,
00369 unsigned long reg ) {
00370 unsigned long offset;
00371
00372 offset = phantom->crb_access ( phantom, reg );
00373 writel ( value, phantom->bar0 + offset );
00374 }
00375
00376
00377
00378
00379
00380
00381
00382
00383
00384 static inline void phantom_write_hilo ( struct phantom_nic *phantom,
00385 uint64_t value,
00386 unsigned long lo_offset,
00387 unsigned long hi_offset ) {
00388 uint32_t lo = ( value & 0xffffffffUL );
00389 uint32_t hi = ( value >> 32 );
00390
00391 phantom_writel ( phantom, lo, lo_offset );
00392 phantom_writel ( phantom, hi, hi_offset );
00393 }
00394
00395
00396
00397
00398
00399
00400
00401
00402
00403
00404
00405
00406
00407
00408
00409 static int phantom_read_test_mem_block ( struct phantom_nic *phantom,
00410 unsigned long offset,
00411 uint32_t buf[2] ) {
00412 unsigned int retries;
00413 uint32_t test_control;
00414
00415 phantom_write_hilo ( phantom, offset, UNM_TEST_ADDR_LO,
00416 UNM_TEST_ADDR_HI );
00417 phantom_writel ( phantom, UNM_TEST_CONTROL_ENABLE, UNM_TEST_CONTROL );
00418 phantom_writel ( phantom,
00419 ( UNM_TEST_CONTROL_ENABLE | UNM_TEST_CONTROL_START ),
00420 UNM_TEST_CONTROL );
00421
00422 for ( retries = 0 ; retries < PHN_TEST_MEM_TIMEOUT_MS ; retries++ ) {
00423 test_control = phantom_readl ( phantom, UNM_TEST_CONTROL );
00424 if ( ( test_control & UNM_TEST_CONTROL_BUSY ) == 0 ) {
00425 buf[0] = phantom_readl ( phantom, UNM_TEST_RDDATA_LO );
00426 buf[1] = phantom_readl ( phantom, UNM_TEST_RDDATA_HI );
00427 return 0;
00428 }
00429 mdelay ( 1 );
00430 }
00431
00432 DBGC ( phantom, "Phantom %p timed out waiting for test memory\n",
00433 phantom );
00434 return -ETIMEDOUT;
00435 }
00436
00437
00438
00439
00440
00441
00442
00443
00444 static int phantom_read_test_mem ( struct phantom_nic *phantom,
00445 unsigned long offset ) {
00446 static union {
00447 uint8_t bytes[8];
00448 uint32_t dwords[2];
00449 } cache;
00450 static unsigned long cache_offset = -1UL;
00451 unsigned long sub_offset;
00452 int rc;
00453
00454 sub_offset = ( offset & ( sizeof ( cache ) - 1 ) );
00455 offset = ( offset & ~( sizeof ( cache ) - 1 ) );
00456
00457 if ( cache_offset != offset ) {
00458 if ( ( rc = phantom_read_test_mem_block ( phantom, offset,
00459 cache.dwords )) !=0 )
00460 return rc;
00461 cache_offset = offset;
00462 }
00463
00464 return cache.bytes[sub_offset];
00465 }
00466
00467
00468
00469
00470
00471
00472
00473
00474
00475 static int phantom_dmesg ( struct phantom_nic *phantom, unsigned int log,
00476 unsigned int max_lines ) {
00477 uint32_t head;
00478 uint32_t tail;
00479 uint32_t len;
00480 uint32_t sig;
00481 uint32_t offset;
00482 int byte;
00483
00484
00485 if ( ! DBG_LOG )
00486 return 0;
00487
00488
00489 head = phantom_readl ( phantom, UNM_CAM_RAM_DMESG_HEAD ( log ) );
00490 len = phantom_readl ( phantom, UNM_CAM_RAM_DMESG_LEN ( log ) );
00491 tail = phantom_readl ( phantom, UNM_CAM_RAM_DMESG_TAIL ( log ) );
00492 sig = phantom_readl ( phantom, UNM_CAM_RAM_DMESG_SIG ( log ) );
00493 DBGC ( phantom, "Phantom %p firmware dmesg buffer %d (%08x-%08x)\n",
00494 phantom, log, head, tail );
00495 assert ( ( head & 0x07 ) == 0 );
00496 if ( sig != UNM_CAM_RAM_DMESG_SIG_MAGIC ) {
00497 DBGC ( phantom, "Warning: bad signature %08x (want %08lx)\n",
00498 sig, UNM_CAM_RAM_DMESG_SIG_MAGIC );
00499 }
00500
00501
00502 for ( offset = tail ; offset > head ; offset-- ) {
00503 if ( ( byte = phantom_read_test_mem ( phantom,
00504 ( offset - 1 ) ) ) < 0 )
00505 return byte;
00506 if ( ( byte == '\n' ) && ( max_lines-- == 0 ) )
00507 break;
00508 }
00509
00510
00511 for ( ; offset < tail ; offset++ ) {
00512 if ( ( byte = phantom_read_test_mem ( phantom, offset ) ) < 0 )
00513 return byte;
00514 DBG ( "%c", byte );
00515 }
00516 DBG ( "\n" );
00517 return 0;
00518 }
00519
00520
00521
00522
00523
00524
00525
00526 static void __attribute__ (( unused ))
00527 phantom_dmesg_all ( struct phantom_nic *phantom, unsigned int max_lines ) {
00528 unsigned int i;
00529
00530 for ( i = 0 ; i < UNM_CAM_RAM_NUM_DMESG_BUFFERS ; i++ )
00531 phantom_dmesg ( phantom, i, max_lines );
00532 }
00533
00534
00535
00536
00537
00538
00539
00540
00541
00542
00543
00544
00545
00546 static int phantom_wait_for_cmd ( struct phantom_nic *phantom ) {
00547 unsigned int retries;
00548 uint32_t cdrp;
00549
00550 for ( retries = 0 ; retries < PHN_ISSUE_CMD_TIMEOUT_MS ; retries++ ) {
00551 mdelay ( 1 );
00552 cdrp = phantom_readl ( phantom, UNM_NIC_REG_NX_CDRP );
00553 if ( NX_CDRP_IS_RSP ( cdrp ) ) {
00554 switch ( NX_CDRP_FORM_RSP ( cdrp ) ) {
00555 case NX_CDRP_RSP_OK:
00556 return 0;
00557 case NX_CDRP_RSP_FAIL:
00558 return -EIO;
00559 case NX_CDRP_RSP_TIMEOUT:
00560 return -ETIMEDOUT;
00561 default:
00562 return -EPROTO;
00563 }
00564 }
00565 }
00566
00567 DBGC ( phantom, "Phantom %p timed out waiting for firmware to accept "
00568 "command\n", phantom );
00569 return -ETIMEDOUT;
00570 }
00571
00572
00573
00574
00575
00576
00577
00578
00579
00580
00581
00582 static int phantom_issue_cmd ( struct phantom_nic *phantom,
00583 uint32_t command, uint32_t arg1, uint32_t arg2,
00584 uint32_t arg3 ) {
00585 uint32_t signature;
00586 int rc;
00587
00588
00589 signature = NX_CDRP_SIGNATURE_MAKE ( phantom->port,
00590 NXHAL_VERSION );
00591 DBGC2 ( phantom, "Phantom %p issuing command %08x (%08x, %08x, "
00592 "%08x)\n", phantom, command, arg1, arg2, arg3 );
00593 phantom_writel ( phantom, signature, UNM_NIC_REG_NX_SIGN );
00594 phantom_writel ( phantom, arg1, UNM_NIC_REG_NX_ARG1 );
00595 phantom_writel ( phantom, arg2, UNM_NIC_REG_NX_ARG2 );
00596 phantom_writel ( phantom, arg3, UNM_NIC_REG_NX_ARG3 );
00597 phantom_writel ( phantom, NX_CDRP_FORM_CMD ( command ),
00598 UNM_NIC_REG_NX_CDRP );
00599
00600
00601 if ( ( rc = phantom_wait_for_cmd ( phantom ) ) != 0 ) {
00602 DBGC ( phantom, "Phantom %p could not issue command: %s\n",
00603 phantom, strerror ( rc ) );
00604 return rc;
00605 }
00606
00607 return 0;
00608 }
00609
00610
00611
00612
00613
00614
00615
00616
00617
00618
00619 static int phantom_issue_buf_cmd ( struct phantom_nic *phantom,
00620 uint32_t command, void *buffer,
00621 size_t len ) {
00622 uint64_t physaddr;
00623
00624 physaddr = virt_to_bus ( buffer );
00625 return phantom_issue_cmd ( phantom, command, ( physaddr >> 32 ),
00626 ( physaddr & 0xffffffffUL ), len );
00627 }
00628
00629
00630
00631
00632
00633
00634
00635 static int phantom_create_rx_ctx ( struct phantom_nic *phantom ) {
00636 struct phantom_create_rx_ctx_rqrsp *buf;
00637 int rc;
00638
00639
00640 buf = malloc_dma ( sizeof ( *buf ), UNM_DMA_BUFFER_ALIGN );
00641 if ( ! buf ) {
00642 rc = -ENOMEM;
00643 goto out;
00644 }
00645 memset ( buf, 0, sizeof ( *buf ) );
00646
00647
00648 buf->hostrq.rx_ctx.host_rsp_dma_addr =
00649 cpu_to_le64 ( virt_to_bus ( &buf->cardrsp ) );
00650 buf->hostrq.rx_ctx.capabilities[0] =
00651 cpu_to_le32 ( NX_CAP0_LEGACY_CONTEXT | NX_CAP0_LEGACY_MN );
00652 buf->hostrq.rx_ctx.host_int_crb_mode =
00653 cpu_to_le32 ( NX_HOST_INT_CRB_MODE_SHARED );
00654 buf->hostrq.rx_ctx.host_rds_crb_mode =
00655 cpu_to_le32 ( NX_HOST_RDS_CRB_MODE_UNIQUE );
00656 buf->hostrq.rx_ctx.rds_ring_offset = cpu_to_le32 ( 0 );
00657 buf->hostrq.rx_ctx.sds_ring_offset =
00658 cpu_to_le32 ( sizeof ( buf->hostrq.rds ) );
00659 buf->hostrq.rx_ctx.num_rds_rings = cpu_to_le16 ( 1 );
00660 buf->hostrq.rx_ctx.num_sds_rings = cpu_to_le16 ( 1 );
00661 buf->hostrq.rds.host_phys_addr =
00662 cpu_to_le64 ( virt_to_bus ( phantom->desc->rds ) );
00663 buf->hostrq.rds.buff_size = cpu_to_le64 ( PHN_RX_BUFSIZE );
00664 buf->hostrq.rds.ring_size = cpu_to_le32 ( PHN_NUM_RDS );
00665 buf->hostrq.rds.ring_kind = cpu_to_le32 ( NX_RDS_RING_TYPE_NORMAL );
00666 buf->hostrq.sds.host_phys_addr =
00667 cpu_to_le64 ( virt_to_bus ( phantom->desc->sds ) );
00668 buf->hostrq.sds.ring_size = cpu_to_le32 ( PHN_NUM_SDS );
00669
00670 DBGC ( phantom, "Phantom %p creating RX context\n", phantom );
00671 DBGC2_HDA ( phantom, virt_to_bus ( &buf->hostrq ),
00672 &buf->hostrq, sizeof ( buf->hostrq ) );
00673
00674
00675 if ( ( rc = phantom_issue_buf_cmd ( phantom,
00676 NX_CDRP_CMD_CREATE_RX_CTX,
00677 &buf->hostrq,
00678 sizeof ( buf->hostrq ) ) ) != 0 ) {
00679 DBGC ( phantom, "Phantom %p could not create RX context: "
00680 "%s\n", phantom, strerror ( rc ) );
00681 DBGC ( phantom, "Request:\n" );
00682 DBGC_HDA ( phantom, virt_to_bus ( &buf->hostrq ),
00683 &buf->hostrq, sizeof ( buf->hostrq ) );
00684 DBGC ( phantom, "Response:\n" );
00685 DBGC_HDA ( phantom, virt_to_bus ( &buf->cardrsp ),
00686 &buf->cardrsp, sizeof ( buf->cardrsp ) );
00687 goto out;
00688 }
00689
00690
00691 phantom->rx_context_id =
00692 le16_to_cpu ( buf->cardrsp.rx_ctx.context_id );
00693 phantom->rds_producer_crb =
00694 ( UNM_CAM_RAM +
00695 le32_to_cpu ( buf->cardrsp.rds.host_producer_crb ) );
00696 phantom->sds_consumer_crb =
00697 ( UNM_CAM_RAM +
00698 le32_to_cpu ( buf->cardrsp.sds.host_consumer_crb ) );
00699 phantom->sds_irq_mask_crb =
00700 ( UNM_CAM_RAM +
00701 le32_to_cpu ( buf->cardrsp.sds.interrupt_crb ) );
00702
00703 DBGC ( phantom, "Phantom %p created RX context (id %04x, port phys "
00704 "%02x virt %02x)\n", phantom, phantom->rx_context_id,
00705 buf->cardrsp.rx_ctx.phys_port, buf->cardrsp.rx_ctx.virt_port );
00706 DBGC2_HDA ( phantom, virt_to_bus ( &buf->cardrsp ),
00707 &buf->cardrsp, sizeof ( buf->cardrsp ) );
00708 DBGC ( phantom, "Phantom %p RDS producer CRB is %08lx\n",
00709 phantom, phantom->rds_producer_crb );
00710 DBGC ( phantom, "Phantom %p SDS consumer CRB is %08lx\n",
00711 phantom, phantom->sds_consumer_crb );
00712 DBGC ( phantom, "Phantom %p SDS interrupt mask CRB is %08lx\n",
00713 phantom, phantom->sds_irq_mask_crb );
00714
00715 out:
00716 free_dma ( buf, sizeof ( *buf ) );
00717 return rc;
00718 }
00719
00720
00721
00722
00723
00724
00725
00726 static void phantom_destroy_rx_ctx ( struct phantom_nic *phantom ) {
00727 int rc;
00728
00729 DBGC ( phantom, "Phantom %p destroying RX context (id %04x)\n",
00730 phantom, phantom->rx_context_id );
00731
00732
00733 if ( ( rc = phantom_issue_cmd ( phantom,
00734 NX_CDRP_CMD_DESTROY_RX_CTX,
00735 phantom->rx_context_id,
00736 NX_DESTROY_CTX_RESET, 0 ) ) != 0 ) {
00737 DBGC ( phantom, "Phantom %p could not destroy RX context: "
00738 "%s\n", phantom, strerror ( rc ) );
00739
00740 return;
00741 }
00742
00743
00744 phantom->rx_context_id = 0;
00745 phantom->rds_producer_crb = 0;
00746 phantom->sds_consumer_crb = 0;
00747
00748
00749 phantom->rds_producer_idx = 0;
00750 phantom->rds_consumer_idx = 0;
00751 phantom->sds_consumer_idx = 0;
00752 }
00753
00754
00755
00756
00757
00758
00759
00760 static int phantom_create_tx_ctx ( struct phantom_nic *phantom ) {
00761 struct phantom_create_tx_ctx_rqrsp *buf;
00762 int rc;
00763
00764
00765 buf = malloc_dma ( sizeof ( *buf ), UNM_DMA_BUFFER_ALIGN );
00766 if ( ! buf ) {
00767 rc = -ENOMEM;
00768 goto out;
00769 }
00770 memset ( buf, 0, sizeof ( *buf ) );
00771
00772
00773 buf->hostrq.tx_ctx.host_rsp_dma_addr =
00774 cpu_to_le64 ( virt_to_bus ( &buf->cardrsp ) );
00775 buf->hostrq.tx_ctx.cmd_cons_dma_addr =
00776 cpu_to_le64 ( virt_to_bus ( &phantom->desc->cmd_cons ) );
00777 buf->hostrq.tx_ctx.capabilities[0] =
00778 cpu_to_le32 ( NX_CAP0_LEGACY_CONTEXT | NX_CAP0_LEGACY_MN );
00779 buf->hostrq.tx_ctx.host_int_crb_mode =
00780 cpu_to_le32 ( NX_HOST_INT_CRB_MODE_SHARED );
00781 buf->hostrq.tx_ctx.cds_ring.host_phys_addr =
00782 cpu_to_le64 ( virt_to_bus ( phantom->desc->cds ) );
00783 buf->hostrq.tx_ctx.cds_ring.ring_size = cpu_to_le32 ( PHN_NUM_CDS );
00784
00785 DBGC ( phantom, "Phantom %p creating TX context\n", phantom );
00786 DBGC2_HDA ( phantom, virt_to_bus ( &buf->hostrq ),
00787 &buf->hostrq, sizeof ( buf->hostrq ) );
00788
00789
00790 if ( ( rc = phantom_issue_buf_cmd ( phantom,
00791 NX_CDRP_CMD_CREATE_TX_CTX,
00792 &buf->hostrq,
00793 sizeof ( buf->hostrq ) ) ) != 0 ) {
00794 DBGC ( phantom, "Phantom %p could not create TX context: "
00795 "%s\n", phantom, strerror ( rc ) );
00796 DBGC ( phantom, "Request:\n" );
00797 DBGC_HDA ( phantom, virt_to_bus ( &buf->hostrq ),
00798 &buf->hostrq, sizeof ( buf->hostrq ) );
00799 DBGC ( phantom, "Response:\n" );
00800 DBGC_HDA ( phantom, virt_to_bus ( &buf->cardrsp ),
00801 &buf->cardrsp, sizeof ( buf->cardrsp ) );
00802 goto out;
00803 }
00804
00805
00806 phantom->tx_context_id =
00807 le16_to_cpu ( buf->cardrsp.tx_ctx.context_id );
00808 phantom->cds_producer_crb =
00809 ( UNM_CAM_RAM +
00810 le32_to_cpu(buf->cardrsp.tx_ctx.cds_ring.host_producer_crb));
00811
00812 DBGC ( phantom, "Phantom %p created TX context (id %04x, port phys "
00813 "%02x virt %02x)\n", phantom, phantom->tx_context_id,
00814 buf->cardrsp.tx_ctx.phys_port, buf->cardrsp.tx_ctx.virt_port );
00815 DBGC2_HDA ( phantom, virt_to_bus ( &buf->cardrsp ),
00816 &buf->cardrsp, sizeof ( buf->cardrsp ) );
00817 DBGC ( phantom, "Phantom %p CDS producer CRB is %08lx\n",
00818 phantom, phantom->cds_producer_crb );
00819
00820 out:
00821 free_dma ( buf, sizeof ( *buf ) );
00822 return rc;
00823 }
00824
00825
00826
00827
00828
00829
00830
00831 static void phantom_destroy_tx_ctx ( struct phantom_nic *phantom ) {
00832 int rc;
00833
00834 DBGC ( phantom, "Phantom %p destroying TX context (id %04x)\n",
00835 phantom, phantom->tx_context_id );
00836
00837
00838 if ( ( rc = phantom_issue_cmd ( phantom,
00839 NX_CDRP_CMD_DESTROY_TX_CTX,
00840 phantom->tx_context_id,
00841 NX_DESTROY_CTX_RESET, 0 ) ) != 0 ) {
00842 DBGC ( phantom, "Phantom %p could not destroy TX context: "
00843 "%s\n", phantom, strerror ( rc ) );
00844
00845 return;
00846 }
00847
00848
00849 phantom->tx_context_id = 0;
00850 phantom->cds_producer_crb = 0;
00851
00852
00853 phantom->cds_producer_idx = 0;
00854 phantom->cds_consumer_idx = 0;
00855 }
00856
00857
00858
00859
00860
00861
00862
00863
00864
00865
00866
00867
00868
00869 static int phantom_alloc_rds ( struct phantom_nic *phantom ) {
00870 unsigned int rds_producer_idx;
00871 unsigned int next_rds_producer_idx;
00872
00873
00874
00875
00876
00877
00878
00879 rds_producer_idx = phantom->rds_producer_idx;
00880 next_rds_producer_idx = ( ( rds_producer_idx + 1 ) % PHN_NUM_RDS );
00881 if ( next_rds_producer_idx == phantom->rds_consumer_idx ) {
00882 DBGC ( phantom, "Phantom %p RDS ring full (index %d not "
00883 "consumed)\n", phantom, next_rds_producer_idx );
00884 return -ENOBUFS;
00885 }
00886
00887 return rds_producer_idx;
00888 }
00889
00890
00891
00892
00893
00894
00895
00896 static void phantom_post_rds ( struct phantom_nic *phantom,
00897 struct phantom_rds *rds ) {
00898 unsigned int rds_producer_idx;
00899 unsigned int next_rds_producer_idx;
00900 struct phantom_rds *entry;
00901
00902
00903 rds_producer_idx = phantom->rds_producer_idx;
00904 entry = &phantom->desc->rds[rds_producer_idx];
00905 memcpy ( entry, rds, sizeof ( *entry ) );
00906 DBGC2 ( phantom, "Phantom %p posting RDS %ld (slot %d):\n",
00907 phantom, NX_GET ( rds, handle ), rds_producer_idx );
00908 DBGC2_HDA ( phantom, virt_to_bus ( entry ), entry, sizeof ( *entry ) );
00909
00910
00911 next_rds_producer_idx = ( ( rds_producer_idx + 1 ) % PHN_NUM_RDS );
00912 phantom->rds_producer_idx = next_rds_producer_idx;
00913 wmb();
00914 phantom_writel ( phantom, phantom->rds_producer_idx,
00915 phantom->rds_producer_crb );
00916 }
00917
00918
00919
00920
00921
00922
00923
00924 static int phantom_alloc_cds ( struct phantom_nic *phantom ) {
00925 unsigned int cds_producer_idx;
00926 unsigned int next_cds_producer_idx;
00927
00928
00929
00930
00931
00932 cds_producer_idx = phantom->cds_producer_idx;
00933 next_cds_producer_idx = ( ( cds_producer_idx + 1 ) % PHN_NUM_CDS );
00934 if ( next_cds_producer_idx == phantom->cds_consumer_idx ) {
00935 DBGC ( phantom, "Phantom %p CDS ring full (index %d not "
00936 "consumed)\n", phantom, next_cds_producer_idx );
00937 return -ENOBUFS;
00938 }
00939
00940 return cds_producer_idx;
00941 }
00942
00943
00944
00945
00946
00947
00948
00949 static void phantom_post_cds ( struct phantom_nic *phantom,
00950 union phantom_cds *cds ) {
00951 unsigned int cds_producer_idx;
00952 unsigned int next_cds_producer_idx;
00953 union phantom_cds *entry;
00954
00955
00956 cds_producer_idx = phantom->cds_producer_idx;
00957 entry = &phantom->desc->cds[cds_producer_idx];
00958 memcpy ( entry, cds, sizeof ( *entry ) );
00959 DBGC2 ( phantom, "Phantom %p posting CDS %d:\n",
00960 phantom, cds_producer_idx );
00961 DBGC2_HDA ( phantom, virt_to_bus ( entry ), entry, sizeof ( *entry ) );
00962
00963
00964 next_cds_producer_idx = ( ( cds_producer_idx + 1 ) % PHN_NUM_CDS );
00965 phantom->cds_producer_idx = next_cds_producer_idx;
00966 wmb();
00967 phantom_writel ( phantom, phantom->cds_producer_idx,
00968 phantom->cds_producer_crb );
00969 }
00970
00971
00972
00973
00974
00975
00976
00977
00978
00979
00980
00981
00982
00983
00984
00985 static int phantom_update_macaddr ( struct phantom_nic *phantom,
00986 const uint8_t *ll_addr,
00987 unsigned int opcode ) {
00988 union phantom_cds cds;
00989 int index;
00990
00991
00992 index = phantom_alloc_cds ( phantom );
00993 if ( index < 0 )
00994 return index;
00995
00996
00997 memset ( &cds, 0, sizeof ( cds ) );
00998 NX_FILL_1 ( &cds, 0,
00999 nic_request.common.opcode, UNM_NIC_REQUEST );
01000 NX_FILL_2 ( &cds, 1,
01001 nic_request.header.opcode, UNM_MAC_EVENT,
01002 nic_request.header.context_id, phantom->port );
01003 NX_FILL_7 ( &cds, 2,
01004 nic_request.body.mac_request.opcode, opcode,
01005 nic_request.body.mac_request.mac_addr_0, ll_addr[0],
01006 nic_request.body.mac_request.mac_addr_1, ll_addr[1],
01007 nic_request.body.mac_request.mac_addr_2, ll_addr[2],
01008 nic_request.body.mac_request.mac_addr_3, ll_addr[3],
01009 nic_request.body.mac_request.mac_addr_4, ll_addr[4],
01010 nic_request.body.mac_request.mac_addr_5, ll_addr[5] );
01011
01012
01013 phantom_post_cds ( phantom, &cds );
01014
01015 return 0;
01016 }
01017
01018
01019
01020
01021
01022
01023
01024
01025 static inline int phantom_add_macaddr ( struct phantom_nic *phantom,
01026 const uint8_t *ll_addr ) {
01027
01028 DBGC ( phantom, "Phantom %p adding MAC address %s\n",
01029 phantom, eth_ntoa ( ll_addr ) );
01030
01031 return phantom_update_macaddr ( phantom, ll_addr, UNM_MAC_ADD );
01032 }
01033
01034
01035
01036
01037
01038
01039
01040
01041 static inline int phantom_del_macaddr ( struct phantom_nic *phantom,
01042 const uint8_t *ll_addr ) {
01043
01044 DBGC ( phantom, "Phantom %p removing MAC address %s\n",
01045 phantom, eth_ntoa ( ll_addr ) );
01046
01047 return phantom_update_macaddr ( phantom, ll_addr, UNM_MAC_DEL );
01048 }
01049
01050
01051
01052
01053
01054
01055
01056
01057
01058
01059
01060
01061 static void phantom_poll_link_state ( struct net_device *netdev ) {
01062 struct phantom_nic *phantom = netdev_priv ( netdev );
01063 uint32_t xg_state_p3;
01064 unsigned int link;
01065
01066
01067 xg_state_p3 = phantom_readl ( phantom, UNM_NIC_REG_XG_STATE_P3 );
01068
01069
01070 if ( phantom->link_state == xg_state_p3 )
01071 return;
01072
01073
01074 DBGC ( phantom, "Phantom %p new link state %08x (was %08x)\n",
01075 phantom, xg_state_p3, phantom->link_state );
01076 phantom->link_state = xg_state_p3;
01077
01078
01079 link = UNM_NIC_REG_XG_STATE_P3_LINK ( phantom->port,
01080 phantom->link_state );
01081 switch ( link ) {
01082 case UNM_NIC_REG_XG_STATE_P3_LINK_UP:
01083 DBGC ( phantom, "Phantom %p link is up\n", phantom );
01084 netdev_link_up ( netdev );
01085 break;
01086 case UNM_NIC_REG_XG_STATE_P3_LINK_DOWN:
01087 DBGC ( phantom, "Phantom %p link is down\n", phantom );
01088 netdev_link_down ( netdev );
01089 break;
01090 default:
01091 DBGC ( phantom, "Phantom %p bad link state %d\n",
01092 phantom, link );
01093 break;
01094 }
01095 }
01096
01097
01098
01099
01100
01101
01102
01103
01104
01105
01106
01107
01108 static void phantom_refill_rx_ring ( struct net_device *netdev ) {
01109 struct phantom_nic *phantom = netdev_priv ( netdev );
01110 struct io_buffer *iobuf;
01111 struct phantom_rds rds;
01112 unsigned int handle;
01113 int index;
01114
01115 for ( handle = 0 ; handle < PHN_RDS_MAX_FILL ; handle++ ) {
01116
01117
01118
01119
01120 if ( phantom->rds_iobuf[handle] != NULL )
01121 continue;
01122
01123
01124 index = phantom_alloc_rds ( phantom );
01125 assert ( PHN_RDS_MAX_FILL < PHN_NUM_RDS );
01126 assert ( index >= 0 );
01127
01128
01129 iobuf = alloc_iob ( PHN_RX_BUFSIZE );
01130 if ( ! iobuf ) {
01131
01132 netdev_rx_err ( netdev, NULL, -ENOMEM );
01133 break;
01134 }
01135
01136
01137 memset ( &rds, 0, sizeof ( rds ) );
01138 NX_FILL_2 ( &rds, 0,
01139 handle, handle,
01140 length, iob_len ( iobuf ) );
01141 NX_FILL_1 ( &rds, 1,
01142 dma_addr, virt_to_bus ( iobuf->data ) );
01143
01144
01145 assert ( phantom->rds_iobuf[handle] == NULL );
01146 phantom->rds_iobuf[handle] = iobuf;
01147
01148
01149 phantom_post_rds ( phantom, &rds );
01150 }
01151 }
01152
01153
01154
01155
01156
01157
01158
01159 static int phantom_open ( struct net_device *netdev ) {
01160 struct phantom_nic *phantom = netdev_priv ( netdev );
01161 int rc;
01162
01163
01164 phantom->desc = malloc_dma ( sizeof ( *(phantom->desc) ),
01165 UNM_DMA_BUFFER_ALIGN );
01166 if ( ! phantom->desc ) {
01167 rc = -ENOMEM;
01168 goto err_alloc_desc;
01169 }
01170 memset ( phantom->desc, 0, sizeof ( *(phantom->desc) ) );
01171
01172
01173 if ( ( rc = phantom_create_rx_ctx ( phantom ) ) != 0 )
01174 goto err_create_rx_ctx;
01175
01176
01177 if ( ( rc = phantom_create_tx_ctx ( phantom ) ) != 0 )
01178 goto err_create_tx_ctx;
01179
01180
01181 phantom_refill_rx_ring ( netdev );
01182
01183
01184
01185
01186
01187
01188
01189
01190
01191 if ( ( rc = phantom_add_macaddr ( phantom,
01192 netdev->ll_broadcast ) ) != 0 )
01193 goto err_add_macaddr_broadcast;
01194 if ( ( rc = phantom_add_macaddr ( phantom,
01195 netdev->ll_addr ) ) != 0 )
01196 goto err_add_macaddr_unicast;
01197
01198 return 0;
01199
01200 phantom_del_macaddr ( phantom, netdev->ll_addr );
01201 err_add_macaddr_unicast:
01202 phantom_del_macaddr ( phantom, netdev->ll_broadcast );
01203 err_add_macaddr_broadcast:
01204 phantom_destroy_tx_ctx ( phantom );
01205 err_create_tx_ctx:
01206 phantom_destroy_rx_ctx ( phantom );
01207 err_create_rx_ctx:
01208 free_dma ( phantom->desc, sizeof ( *(phantom->desc) ) );
01209 phantom->desc = NULL;
01210 err_alloc_desc:
01211 return rc;
01212 }
01213
01214
01215
01216
01217
01218
01219 static void phantom_close ( struct net_device *netdev ) {
01220 struct phantom_nic *phantom = netdev_priv ( netdev );
01221 struct io_buffer *iobuf;
01222 unsigned int i;
01223
01224
01225 phantom_del_macaddr ( phantom, netdev->ll_addr );
01226 phantom_del_macaddr ( phantom, netdev->ll_broadcast );
01227 phantom_destroy_tx_ctx ( phantom );
01228 phantom_destroy_rx_ctx ( phantom );
01229 free_dma ( phantom->desc, sizeof ( *(phantom->desc) ) );
01230 phantom->desc = NULL;
01231
01232
01233 for ( i = 0 ; i < PHN_RDS_MAX_FILL ; i++ ) {
01234 iobuf = phantom->rds_iobuf[i];
01235 if ( iobuf ) {
01236 free_iob ( iobuf );
01237 phantom->rds_iobuf[i] = NULL;
01238 }
01239 }
01240 for ( i = 0 ; i < PHN_NUM_CDS ; i++ ) {
01241 iobuf = phantom->cds_iobuf[i];
01242 if ( iobuf ) {
01243 netdev_tx_complete_err ( netdev, iobuf, -ECANCELED );
01244 phantom->cds_iobuf[i] = NULL;
01245 }
01246 }
01247 }
01248
01249
01250
01251
01252
01253
01254
01255
01256 static int phantom_transmit ( struct net_device *netdev,
01257 struct io_buffer *iobuf ) {
01258 struct phantom_nic *phantom = netdev_priv ( netdev );
01259 union phantom_cds cds;
01260 int index;
01261
01262
01263 index = phantom_alloc_cds ( phantom );
01264 if ( index < 0 )
01265 return index;
01266
01267
01268 memset ( &cds, 0, sizeof ( cds ) );
01269 NX_FILL_3 ( &cds, 0,
01270 tx.opcode, UNM_TX_ETHER_PKT,
01271 tx.num_buffers, 1,
01272 tx.length, iob_len ( iobuf ) );
01273 NX_FILL_2 ( &cds, 2,
01274 tx.port, phantom->port,
01275 tx.context_id, phantom->port );
01276 NX_FILL_1 ( &cds, 4,
01277 tx.buffer1_dma_addr, virt_to_bus ( iobuf->data ) );
01278 NX_FILL_1 ( &cds, 5,
01279 tx.buffer1_length, iob_len ( iobuf ) );
01280
01281
01282 assert ( phantom->cds_iobuf[index] == NULL );
01283 phantom->cds_iobuf[index] = iobuf;
01284
01285
01286 phantom_post_cds ( phantom, &cds );
01287
01288 return 0;
01289 }
01290
01291
01292
01293
01294
01295
01296 static void phantom_poll ( struct net_device *netdev ) {
01297 struct phantom_nic *phantom = netdev_priv ( netdev );
01298 struct io_buffer *iobuf;
01299 unsigned int irq_vector;
01300 unsigned int irq_state;
01301 unsigned int cds_consumer_idx;
01302 unsigned int raw_new_cds_consumer_idx;
01303 unsigned int new_cds_consumer_idx;
01304 unsigned int rds_consumer_idx;
01305 unsigned int sds_consumer_idx;
01306 struct phantom_sds *sds;
01307 unsigned int sds_handle;
01308 unsigned int sds_opcode;
01309
01310
01311 if ( phantom->link_poll_timer-- == 0 ) {
01312 phantom_poll_link_state ( netdev );
01313
01314 phantom->link_poll_timer = PHN_LINK_POLL_FREQUENCY;
01315 }
01316
01317
01318 if ( phantom->sds_irq_enabled ) {
01319
01320
01321 irq_vector = phantom_readl ( phantom, UNM_PCIE_IRQ_VECTOR );
01322 if ( ! ( irq_vector & UNM_PCIE_IRQ_VECTOR_BIT( phantom->port )))
01323 return;
01324
01325
01326 irq_state = phantom_readl ( phantom, UNM_PCIE_IRQ_STATE );
01327 if ( ! UNM_PCIE_IRQ_STATE_TRIGGERED ( irq_state ) )
01328 return;
01329
01330
01331 phantom_writel ( phantom, UNM_PCIE_IRQ_STATUS_MAGIC,
01332 phantom_irq_status_reg[phantom->port] );
01333 phantom_readl ( phantom, UNM_PCIE_IRQ_VECTOR );
01334 }
01335
01336
01337 cds_consumer_idx = phantom->cds_consumer_idx;
01338 raw_new_cds_consumer_idx = phantom->desc->cmd_cons;
01339 new_cds_consumer_idx = le32_to_cpu ( raw_new_cds_consumer_idx );
01340 while ( cds_consumer_idx != new_cds_consumer_idx ) {
01341 DBGC2 ( phantom, "Phantom %p CDS %d complete\n",
01342 phantom, cds_consumer_idx );
01343
01344
01345
01346 if ( ( iobuf = phantom->cds_iobuf[cds_consumer_idx] ) ) {
01347 netdev_tx_complete ( netdev, iobuf );
01348 phantom->cds_iobuf[cds_consumer_idx] = NULL;
01349 }
01350 cds_consumer_idx = ( ( cds_consumer_idx + 1 ) % PHN_NUM_CDS );
01351 phantom->cds_consumer_idx = cds_consumer_idx;
01352 }
01353
01354
01355 rds_consumer_idx = phantom->rds_consumer_idx;
01356 sds_consumer_idx = phantom->sds_consumer_idx;
01357 while ( 1 ) {
01358 sds = &phantom->desc->sds[sds_consumer_idx];
01359 if ( NX_GET ( sds, owner ) == 0 )
01360 break;
01361
01362 DBGC2 ( phantom, "Phantom %p SDS %d status:\n",
01363 phantom, sds_consumer_idx );
01364 DBGC2_HDA ( phantom, virt_to_bus ( sds ), sds, sizeof (*sds) );
01365
01366
01367 sds_opcode = NX_GET ( sds, opcode );
01368 if ( ( sds_opcode == UNM_RXPKT_DESC ) ||
01369 ( sds_opcode == UNM_SYN_OFFLOAD ) ) {
01370
01371
01372
01373
01374 if ( NX_GET ( sds, total_length ) == 0 ) {
01375 DBGC ( phantom, "Phantom %p SDS %d "
01376 "incomplete; deferring\n",
01377 phantom, sds_consumer_idx );
01378
01379 break;
01380 }
01381
01382
01383 sds_handle = NX_GET ( sds, handle );
01384 iobuf = phantom->rds_iobuf[sds_handle];
01385 assert ( iobuf != NULL );
01386 iob_put ( iobuf, NX_GET ( sds, total_length ) );
01387 iob_pull ( iobuf, NX_GET ( sds, pkt_offset ) );
01388 DBGC2 ( phantom, "Phantom %p RDS %d complete\n",
01389 phantom, sds_handle );
01390 netdev_rx ( netdev, iobuf );
01391 phantom->rds_iobuf[sds_handle] = NULL;
01392
01393
01394
01395
01396
01397
01398
01399
01400 rds_consumer_idx =
01401 ( ( rds_consumer_idx + 1 ) % PHN_NUM_RDS );
01402 phantom->rds_consumer_idx = rds_consumer_idx;
01403
01404 } else {
01405
01406 DBGC ( phantom, "Phantom %p unexpected SDS opcode "
01407 "%02x\n", phantom, sds_opcode );
01408 DBGC_HDA ( phantom, virt_to_bus ( sds ),
01409 sds, sizeof ( *sds ) );
01410 }
01411
01412
01413 memset ( sds, 0, sizeof ( *sds ) );
01414
01415
01416 sds_consumer_idx = ( ( sds_consumer_idx + 1 ) % PHN_NUM_SDS );
01417 phantom->sds_consumer_idx = sds_consumer_idx;
01418 wmb();
01419 phantom_writel ( phantom, phantom->sds_consumer_idx,
01420 phantom->sds_consumer_crb );
01421 }
01422
01423
01424 phantom_refill_rx_ring ( netdev );
01425 }
01426
01427
01428
01429
01430
01431
01432
01433 static void phantom_irq ( struct net_device *netdev, int enable ) {
01434 struct phantom_nic *phantom = netdev_priv ( netdev );
01435
01436 phantom_writel ( phantom, ( enable ? 1 : 0 ),
01437 phantom->sds_irq_mask_crb );
01438 phantom_writel ( phantom, UNM_PCIE_IRQ_MASK_MAGIC,
01439 phantom_irq_mask_reg[phantom->port] );
01440 phantom->sds_irq_enabled = enable;
01441 }
01442
01443
01444 static struct net_device_operations phantom_operations = {
01445 .open = phantom_open,
01446 .close = phantom_close,
01447 .transmit = phantom_transmit,
01448 .poll = phantom_poll,
01449 .irq = phantom_irq,
01450 };
01451
01452
01453
01454
01455
01456
01457
01458
01459 #define PHN_CLP_TAG_MAGIC 0xc19c1900UL
01460
01461
01462 #define PHN_CLP_TAG_MAGIC_MASK 0xffffff00UL
01463
01464
01465
01466
01467 union phantom_clp_data {
01468
01469
01470
01471
01472
01473
01474 uint8_t bytes[8];
01475
01476 struct {
01477
01478 uint32_t hi;
01479
01480 uint32_t lo;
01481 } dwords;
01482 };
01483 #define PHN_CLP_BLKSIZE ( sizeof ( union phantom_clp_data ) )
01484
01485
01486
01487
01488
01489
01490
01491 static int phantom_clp_wait ( struct phantom_nic *phantom ) {
01492 unsigned int retries;
01493 uint32_t status;
01494
01495 for ( retries = 0 ; retries < PHN_CLP_CMD_TIMEOUT_MS ; retries++ ) {
01496 status = phantom_readl ( phantom, UNM_CAM_RAM_CLP_STATUS );
01497 if ( status & UNM_CAM_RAM_CLP_STATUS_DONE )
01498 return 0;
01499 mdelay ( 1 );
01500 }
01501
01502 DBGC ( phantom, "Phantom %p timed out waiting for CLP command\n",
01503 phantom );
01504 return -ETIMEDOUT;
01505 }
01506
01507
01508
01509
01510
01511
01512
01513
01514
01515
01516
01517
01518
01519 static int phantom_clp_cmd ( struct phantom_nic *phantom, unsigned int port,
01520 unsigned int opcode, const void *data_in,
01521 void *data_out, size_t offset, size_t len ) {
01522 union phantom_clp_data data;
01523 unsigned int index = ( offset / sizeof ( data ) );
01524 unsigned int last = 0;
01525 size_t in_frag_len;
01526 uint8_t *in_frag;
01527 uint32_t command;
01528 uint32_t status;
01529 size_t read_len;
01530 unsigned int error;
01531 size_t out_frag_len;
01532 uint8_t *out_frag;
01533 int rc;
01534
01535
01536 assert ( ( offset % sizeof ( data ) ) == 0 );
01537 if ( len > 255 ) {
01538 DBGC ( phantom, "Phantom %p invalid CLP length %zd\n",
01539 phantom, len );
01540 return -EINVAL;
01541 }
01542
01543
01544 if ( ( rc = phantom_clp_wait ( phantom ) ) != 0 )
01545 return rc;
01546
01547
01548 memset ( &data, 0, sizeof ( data ) );
01549 if ( data_in ) {
01550 assert ( offset < len );
01551 in_frag_len = ( len - offset );
01552 if ( in_frag_len > sizeof ( data ) ) {
01553 in_frag_len = sizeof ( data );
01554 } else {
01555 last = 1;
01556 }
01557 in_frag = &data.bytes[ sizeof ( data ) - in_frag_len ];
01558 memcpy ( in_frag, ( data_in + offset ), in_frag_len );
01559 phantom_writel ( phantom, be32_to_cpu ( data.dwords.lo ),
01560 UNM_CAM_RAM_CLP_DATA_LO );
01561 phantom_writel ( phantom, be32_to_cpu ( data.dwords.hi ),
01562 UNM_CAM_RAM_CLP_DATA_HI );
01563 }
01564
01565
01566 command = ( ( index << 24 ) | ( ( data_in ? len : 0 ) << 16 ) |
01567 ( port << 8 ) | ( last << 7 ) | ( opcode << 0 ) );
01568 phantom_writel ( phantom, command, UNM_CAM_RAM_CLP_COMMAND );
01569 mb();
01570 phantom_writel ( phantom, UNM_CAM_RAM_CLP_STATUS_START,
01571 UNM_CAM_RAM_CLP_STATUS );
01572
01573
01574 if ( ( rc = phantom_clp_wait ( phantom ) ) != 0 )
01575 return rc;
01576
01577
01578 status = phantom_readl ( phantom, UNM_CAM_RAM_CLP_STATUS );
01579 read_len = ( ( status >> 16 ) & 0xff );
01580 error = ( ( status >> 8 ) & 0xff );
01581 if ( error ) {
01582 DBGC ( phantom, "Phantom %p CLP command error %02x\n",
01583 phantom, error );
01584 return -EIO;
01585 }
01586
01587
01588 if ( data_out ) {
01589 data.dwords.lo = cpu_to_be32 ( phantom_readl ( phantom,
01590 UNM_CAM_RAM_CLP_DATA_LO ) );
01591 data.dwords.hi = cpu_to_be32 ( phantom_readl ( phantom,
01592 UNM_CAM_RAM_CLP_DATA_HI ) );
01593 out_frag_len = ( read_len - offset );
01594 if ( out_frag_len > sizeof ( data ) )
01595 out_frag_len = sizeof ( data );
01596 out_frag = &data.bytes[ sizeof ( data ) - out_frag_len ];
01597 if ( out_frag_len > ( len - offset ) )
01598 out_frag_len = ( len - offset );
01599 memcpy ( ( data_out + offset ), out_frag, out_frag_len );
01600 }
01601
01602 return read_len;
01603 }
01604
01605
01606
01607
01608
01609
01610
01611
01612
01613
01614
01615 static int phantom_clp_store ( struct phantom_nic *phantom, unsigned int port,
01616 unsigned int setting, const void *data,
01617 size_t len ) {
01618 unsigned int opcode = setting;
01619 size_t offset;
01620 int rc;
01621
01622 for ( offset = 0 ; offset < len ; offset += PHN_CLP_BLKSIZE ) {
01623 if ( ( rc = phantom_clp_cmd ( phantom, port, opcode, data,
01624 NULL, offset, len ) ) < 0 )
01625 return rc;
01626 }
01627 return 0;
01628 }
01629
01630
01631
01632
01633
01634
01635
01636
01637
01638
01639
01640 static int phantom_clp_fetch ( struct phantom_nic *phantom, unsigned int port,
01641 unsigned int setting, void *data, size_t len ) {
01642 unsigned int opcode = ( setting + 1 );
01643 size_t offset = 0;
01644 int read_len;
01645
01646 while ( 1 ) {
01647 read_len = phantom_clp_cmd ( phantom, port, opcode, NULL,
01648 data, offset, len );
01649 if ( read_len < 0 )
01650 return read_len;
01651 offset += PHN_CLP_BLKSIZE;
01652 if ( offset >= ( unsigned ) read_len )
01653 break;
01654 if ( offset >= len )
01655 break;
01656 }
01657 return read_len;
01658 }
01659
01660
01661 struct phantom_clp_setting {
01662
01663 struct setting *setting;
01664
01665 unsigned int clp_setting;
01666 };
01667
01668
01669 static struct phantom_clp_setting clp_settings[] = {
01670 { &mac_setting, 0x01 },
01671 };
01672
01673
01674
01675
01676
01677
01678
01679 static unsigned int
01680 phantom_clp_setting ( struct phantom_nic *phantom, struct setting *setting ) {
01681 struct phantom_clp_setting *clp_setting;
01682 unsigned int i;
01683
01684
01685 for ( i = 0 ; i < ( sizeof ( clp_settings ) /
01686 sizeof ( clp_settings[0] ) ) ; i++ ) {
01687 clp_setting = &clp_settings[i];
01688 if ( setting_cmp ( setting, clp_setting->setting ) == 0 )
01689 return clp_setting->clp_setting;
01690 }
01691
01692
01693 if ( ( setting->tag & PHN_CLP_TAG_MAGIC_MASK ) == PHN_CLP_TAG_MAGIC )
01694 return ( setting->tag & ~PHN_CLP_TAG_MAGIC_MASK );
01695
01696 DBGC2 ( phantom, "Phantom %p has no \"%s\" setting\n",
01697 phantom, setting->name );
01698
01699 return 0;
01700 }
01701
01702
01703
01704
01705
01706
01707
01708
01709
01710
01711 static int phantom_store_setting ( struct settings *settings,
01712 struct setting *setting,
01713 const void *data, size_t len ) {
01714 struct phantom_nic *phantom =
01715 container_of ( settings, struct phantom_nic, settings );
01716 unsigned int clp_setting;
01717 int rc;
01718
01719
01720 clp_setting = phantom_clp_setting ( phantom, setting );
01721 if ( ! clp_setting )
01722 return -ENOTSUP;
01723
01724
01725 if ( ( rc = phantom_clp_store ( phantom, phantom->port,
01726 clp_setting, data, len ) ) != 0 ) {
01727 DBGC ( phantom, "Phantom %p could not store setting \"%s\": "
01728 "%s\n", phantom, setting->name, strerror ( rc ) );
01729 return rc;
01730 }
01731
01732 return 0;
01733 }
01734
01735
01736
01737
01738
01739
01740
01741
01742
01743
01744 static int phantom_fetch_setting ( struct settings *settings,
01745 struct setting *setting,
01746 void *data, size_t len ) {
01747 struct phantom_nic *phantom =
01748 container_of ( settings, struct phantom_nic, settings );
01749 unsigned int clp_setting;
01750 int read_len;
01751 int rc;
01752
01753
01754 clp_setting = phantom_clp_setting ( phantom, setting );
01755 if ( ! clp_setting )
01756 return -ENOTSUP;
01757
01758
01759 if ( ( read_len = phantom_clp_fetch ( phantom, phantom->port,
01760 clp_setting, data, len ) ) < 0 ){
01761 rc = read_len;
01762 DBGC ( phantom, "Phantom %p could not fetch setting \"%s\": "
01763 "%s\n", phantom, setting->name, strerror ( rc ) );
01764 return rc;
01765 }
01766
01767 return read_len;
01768 }
01769
01770
01771 static struct settings_operations phantom_settings_operations = {
01772 .store = phantom_store_setting,
01773 .fetch = phantom_fetch_setting,
01774 };
01775
01776
01777
01778
01779
01780
01781
01782
01783
01784
01785
01786
01787
01788 static int phantom_map_crb ( struct phantom_nic *phantom,
01789 struct pci_device *pci ) {
01790 unsigned long bar0_start;
01791 unsigned long bar0_size;
01792
01793 bar0_start = pci_bar_start ( pci, PCI_BASE_ADDRESS_0 );
01794 bar0_size = pci_bar_size ( pci, PCI_BASE_ADDRESS_0 );
01795 DBGC ( phantom, "Phantom %p is PCI %02x:%02x.%x with BAR0 at "
01796 "%08lx+%lx\n", phantom, pci->bus, PCI_SLOT ( pci->devfn ),
01797 PCI_FUNC ( pci->devfn ), bar0_start, bar0_size );
01798
01799 if ( ! bar0_start ) {
01800 DBGC ( phantom, "Phantom %p BAR not assigned; ignoring\n",
01801 phantom );
01802 return -EINVAL;
01803 }
01804
01805 switch ( bar0_size ) {
01806 case ( 128 * 1024 * 1024 ) :
01807 DBGC ( phantom, "Phantom %p has 128MB BAR\n", phantom );
01808 phantom->crb_access = phantom_crb_access_128m;
01809 break;
01810 case ( 32 * 1024 * 1024 ) :
01811 DBGC ( phantom, "Phantom %p has 32MB BAR\n", phantom );
01812 phantom->crb_access = phantom_crb_access_32m;
01813 break;
01814 case ( 2 * 1024 * 1024 ) :
01815 DBGC ( phantom, "Phantom %p has 2MB BAR\n", phantom );
01816 phantom->crb_access = phantom_crb_access_2m;
01817 break;
01818 default:
01819 DBGC ( phantom, "Phantom %p has bad BAR size\n", phantom );
01820 return -EINVAL;
01821 }
01822
01823 phantom->bar0 = ioremap ( bar0_start, bar0_size );
01824 if ( ! phantom->bar0 ) {
01825 DBGC ( phantom, "Phantom %p could not map BAR0\n", phantom );
01826 return -EIO;
01827 }
01828
01829
01830
01831
01832 phantom->crb_window = -1UL;
01833
01834 return 0;
01835 }
01836
01837
01838
01839
01840
01841
01842 static void phantom_unhalt_pegs ( struct phantom_nic *phantom ) {
01843 uint32_t halt_status;
01844
01845 halt_status = phantom_readl ( phantom, UNM_PEG_0_HALT_STATUS );
01846 phantom_writel ( phantom, halt_status, UNM_PEG_0_HALT_STATUS );
01847 halt_status = phantom_readl ( phantom, UNM_PEG_1_HALT_STATUS );
01848 phantom_writel ( phantom, halt_status, UNM_PEG_1_HALT_STATUS );
01849 halt_status = phantom_readl ( phantom, UNM_PEG_2_HALT_STATUS );
01850 phantom_writel ( phantom, halt_status, UNM_PEG_2_HALT_STATUS );
01851 halt_status = phantom_readl ( phantom, UNM_PEG_3_HALT_STATUS );
01852 phantom_writel ( phantom, halt_status, UNM_PEG_3_HALT_STATUS );
01853 halt_status = phantom_readl ( phantom, UNM_PEG_4_HALT_STATUS );
01854 phantom_writel ( phantom, halt_status, UNM_PEG_4_HALT_STATUS );
01855 }
01856
01857
01858
01859
01860
01861
01862
01863 static int phantom_init_cmdpeg ( struct phantom_nic *phantom ) {
01864 uint32_t cold_boot;
01865 uint32_t sw_reset;
01866 unsigned int retries;
01867 uint32_t cmdpeg_state;
01868 uint32_t last_cmdpeg_state = 0;
01869
01870
01871
01872
01873
01874 cmdpeg_state = phantom_readl ( phantom, UNM_NIC_REG_CMDPEG_STATE );
01875 if ( cmdpeg_state == UNM_NIC_REG_CMDPEG_STATE_INITIALIZE_ACK ) {
01876 DBGC ( phantom, "Phantom %p command PEG already initialized\n",
01877 phantom );
01878
01879
01880
01881
01882 phantom_unhalt_pegs ( phantom );
01883 return 0;
01884 }
01885
01886
01887 cold_boot = phantom_readl ( phantom, UNM_CAM_RAM_COLD_BOOT );
01888 if ( cold_boot == UNM_CAM_RAM_COLD_BOOT_MAGIC ) {
01889 DBGC ( phantom, "Phantom %p coming up from cold boot\n",
01890 phantom );
01891 sw_reset = phantom_readl ( phantom, UNM_ROMUSB_GLB_SW_RESET );
01892 if ( sw_reset != UNM_ROMUSB_GLB_SW_RESET_MAGIC ) {
01893 DBGC ( phantom, "Phantom %p reset failed: %08x\n",
01894 phantom, sw_reset );
01895 return -EIO;
01896 }
01897 } else {
01898 DBGC ( phantom, "Phantom %p coming up from warm boot "
01899 "(%08x)\n", phantom, cold_boot );
01900 }
01901
01902 phantom_writel ( phantom, 0, UNM_CAM_RAM_COLD_BOOT );
01903
01904
01905 phantom_writel ( phantom, UNM_CAM_RAM_PORT_MODE_AUTO_NEG_1G,
01906 UNM_CAM_RAM_WOL_PORT_MODE );
01907
01908
01909 phantom_write_hilo ( phantom, 0,
01910 UNM_NIC_REG_DUMMY_BUF_ADDR_LO,
01911 UNM_NIC_REG_DUMMY_BUF_ADDR_HI );
01912 phantom_writel ( phantom, UNM_NIC_REG_DUMMY_BUF_INIT,
01913 UNM_NIC_REG_DUMMY_BUF );
01914
01915
01916 phantom_writel ( phantom, UNM_ROMUSB_GLB_PEGTUNE_DONE_MAGIC,
01917 UNM_ROMUSB_GLB_PEGTUNE_DONE );
01918
01919
01920 DBGC ( phantom, "Phantom %p initialising command PEG (will take up to "
01921 "%d seconds)...\n", phantom, PHN_CMDPEG_INIT_TIMEOUT_SEC );
01922 for ( retries = 0; retries < PHN_CMDPEG_INIT_TIMEOUT_SEC; retries++ ) {
01923 cmdpeg_state = phantom_readl ( phantom,
01924 UNM_NIC_REG_CMDPEG_STATE );
01925 if ( cmdpeg_state != last_cmdpeg_state ) {
01926 DBGC ( phantom, "Phantom %p command PEG state is "
01927 "%08x after %d seconds...\n",
01928 phantom, cmdpeg_state, retries );
01929 last_cmdpeg_state = cmdpeg_state;
01930 }
01931 if ( cmdpeg_state == UNM_NIC_REG_CMDPEG_STATE_INITIALIZED ) {
01932
01933 phantom_writel ( phantom,
01934 UNM_NIC_REG_CMDPEG_STATE_INITIALIZE_ACK,
01935 UNM_NIC_REG_CMDPEG_STATE );
01936 return 0;
01937 }
01938 mdelay ( 1000 );
01939 }
01940
01941 DBGC ( phantom, "Phantom %p timed out waiting for command PEG to "
01942 "initialise (status %08x)\n", phantom, cmdpeg_state );
01943 return -ETIMEDOUT;
01944 }
01945
01946
01947
01948
01949
01950
01951
01952 static void phantom_get_macaddr ( struct phantom_nic *phantom,
01953 uint8_t *hw_addr ) {
01954 union {
01955 uint8_t mac_addr[2][ETH_ALEN];
01956 uint32_t dwords[3];
01957 } u;
01958 unsigned long offset;
01959 int i;
01960
01961
01962 offset = ( UNM_CAM_RAM_MAC_ADDRS +
01963 ( 12 * ( phantom->port / 2 ) ) );
01964 for ( i = 0 ; i < 3 ; i++, offset += 4 ) {
01965 u.dwords[i] = phantom_readl ( phantom, offset );
01966 }
01967
01968
01969 for ( i = 0 ; i < ETH_ALEN ; i++ ) {
01970 hw_addr[ ETH_ALEN - i - 1 ] =
01971 u.mac_addr[ phantom->port & 1 ][i];
01972 }
01973 DBGC ( phantom, "Phantom %p MAC address is %s\n",
01974 phantom, eth_ntoa ( hw_addr ) );
01975 }
01976
01977
01978
01979
01980
01981
01982
01983
01984
01985
01986
01987
01988
01989
01990 static int phantom_check_boot_enable ( struct phantom_nic *phantom ) {
01991 unsigned long boot_enable;
01992
01993 boot_enable = phantom_readl ( phantom, UNM_CAM_RAM_BOOT_ENABLE );
01994 if ( ! ( boot_enable & ( 1 << phantom->port ) ) ) {
01995 DBGC ( phantom, "Phantom %p PXE boot is disabled\n",
01996 phantom );
01997 return -ENOTSUP;
01998 }
01999
02000 return 0;
02001 }
02002
02003
02004
02005
02006
02007
02008
02009 static int phantom_init_rcvpeg ( struct phantom_nic *phantom ) {
02010 unsigned int retries;
02011 uint32_t rcvpeg_state;
02012 uint32_t last_rcvpeg_state = 0;
02013
02014 DBGC ( phantom, "Phantom %p initialising receive PEG (will take up to "
02015 "%d seconds)...\n", phantom, PHN_RCVPEG_INIT_TIMEOUT_SEC );
02016 for ( retries = 0; retries < PHN_RCVPEG_INIT_TIMEOUT_SEC; retries++ ) {
02017 rcvpeg_state = phantom_readl ( phantom,
02018 UNM_NIC_REG_RCVPEG_STATE );
02019 if ( rcvpeg_state != last_rcvpeg_state ) {
02020 DBGC ( phantom, "Phantom %p receive PEG state is "
02021 "%08x after %d seconds...\n",
02022 phantom, rcvpeg_state, retries );
02023 last_rcvpeg_state = rcvpeg_state;
02024 }
02025 if ( rcvpeg_state == UNM_NIC_REG_RCVPEG_STATE_INITIALIZED )
02026 return 0;
02027 mdelay ( 1000 );
02028 }
02029
02030 DBGC ( phantom, "Phantom %p timed out waiting for receive PEG to "
02031 "initialise (status %08x)\n", phantom, rcvpeg_state );
02032 return -ETIMEDOUT;
02033 }
02034
02035
02036
02037
02038
02039
02040
02041
02042 static int phantom_probe ( struct pci_device *pci,
02043 const struct pci_device_id *id __unused ) {
02044 struct net_device *netdev;
02045 struct phantom_nic *phantom;
02046 struct settings *parent_settings;
02047 int rc;
02048
02049
02050 netdev = alloc_etherdev ( sizeof ( *phantom ) );
02051 if ( ! netdev ) {
02052 rc = -ENOMEM;
02053 goto err_alloc_etherdev;
02054 }
02055 netdev_init ( netdev, &phantom_operations );
02056 phantom = netdev_priv ( netdev );
02057 pci_set_drvdata ( pci, netdev );
02058 netdev->dev = &pci->dev;
02059 memset ( phantom, 0, sizeof ( *phantom ) );
02060 phantom->port = PCI_FUNC ( pci->devfn );
02061 assert ( phantom->port < PHN_MAX_NUM_PORTS );
02062 settings_init ( &phantom->settings,
02063 &phantom_settings_operations,
02064 &netdev->refcnt, "clp", PHN_CLP_TAG_MAGIC );
02065
02066
02067 adjust_pci_device ( pci );
02068
02069
02070 if ( ( rc = phantom_map_crb ( phantom, pci ) ) != 0 )
02071 goto err_map_crb;
02072
02073
02074
02075
02076
02077 if ( PCI_FUNC ( pci->devfn ) == 0 ) {
02078 unsigned int i;
02079 for ( i = 0 ; i < 8 ; i++ ) {
02080 uint32_t temp;
02081 pci->devfn = PCI_DEVFN ( PCI_SLOT ( pci->devfn ), i );
02082 pci_read_config_dword ( pci, 0xc8, &temp );
02083 pci_read_config_dword ( pci, 0xc8, &temp );
02084 pci_write_config_dword ( pci, 0xc8, 0xf1000 );
02085 }
02086 pci->devfn = PCI_DEVFN ( PCI_SLOT ( pci->devfn ), 0 );
02087 }
02088
02089
02090 if ( ( rc = phantom_init_cmdpeg ( phantom ) ) != 0 )
02091 goto err_init_cmdpeg;
02092
02093
02094 if ( ( rc = phantom_init_rcvpeg ( phantom ) ) != 0 )
02095 goto err_init_rcvpeg;
02096
02097
02098 phantom_get_macaddr ( phantom, netdev->hw_addr );
02099
02100
02101 if ( ( rc = phantom_check_boot_enable ( phantom ) ) != 0 )
02102 goto err_check_boot_enable;
02103
02104
02105 if ( ( rc = register_netdev ( netdev ) ) != 0 ) {
02106 DBGC ( phantom, "Phantom %p could not register net device: "
02107 "%s\n", phantom, strerror ( rc ) );
02108 goto err_register_netdev;
02109 }
02110
02111
02112 parent_settings = netdev_settings ( netdev );
02113 if ( ( rc = register_settings ( &phantom->settings,
02114 parent_settings ) ) != 0 ) {
02115 DBGC ( phantom, "Phantom %p could not register settings: "
02116 "%s\n", phantom, strerror ( rc ) );
02117 goto err_register_settings;
02118 }
02119
02120 return 0;
02121
02122 unregister_settings ( &phantom->settings );
02123 err_register_settings:
02124 unregister_netdev ( netdev );
02125 err_register_netdev:
02126 err_check_boot_enable:
02127 err_init_rcvpeg:
02128 err_init_cmdpeg:
02129 err_map_crb:
02130 netdev_nullify ( netdev );
02131 netdev_put ( netdev );
02132 err_alloc_etherdev:
02133 return rc;
02134 }
02135
02136
02137
02138
02139
02140
02141 static void phantom_remove ( struct pci_device *pci ) {
02142 struct net_device *netdev = pci_get_drvdata ( pci );
02143 struct phantom_nic *phantom = netdev_priv ( netdev );
02144
02145 unregister_settings ( &phantom->settings );
02146 unregister_netdev ( netdev );
02147 netdev_nullify ( netdev );
02148 netdev_put ( netdev );
02149 }
02150
02151
02152 static struct pci_device_id phantom_nics[] = {
02153 PCI_ROM ( 0x4040, 0x0100, "nx", "NX", 0 ),
02154 };
02155
02156
02157 struct pci_driver phantom_driver __pci_driver = {
02158 .ids = phantom_nics,
02159 .id_count = ( sizeof ( phantom_nics ) / sizeof ( phantom_nics[0] ) ),
02160 .probe = phantom_probe,
02161 .remove = phantom_remove,
02162 };