1 // SPDX-License-Identifier: GPL-2.0-only 2 /* Copyright (c) 2020 Facebook */ 3 4 #include <linux/bits.h> 5 #include <linux/err.h> 6 #include <linux/kernel.h> 7 #include <linux/module.h> 8 #include <linux/debugfs.h> 9 #include <linux/init.h> 10 #include <linux/pci.h> 11 #include <linux/serial_8250.h> 12 #include <linux/clkdev.h> 13 #include <linux/clk-provider.h> 14 #include <linux/platform_device.h> 15 #include <linux/platform_data/i2c-xiic.h> 16 #include <linux/platform_data/i2c-ocores.h> 17 #include <linux/ptp_clock_kernel.h> 18 #include <linux/spi/spi.h> 19 #include <linux/spi/xilinx_spi.h> 20 #include <linux/spi/altera.h> 21 #include <net/devlink.h> 22 #include <linux/i2c.h> 23 #include <linux/mtd/mtd.h> 24 #include <linux/nvmem-consumer.h> 25 #include <linux/crc16.h> 26 #include <linux/dpll.h> 27 28 #define PCI_VENDOR_ID_FACEBOOK 0x1d9b 29 #define PCI_DEVICE_ID_FACEBOOK_TIMECARD 0x0400 30 31 #define PCI_VENDOR_ID_CELESTICA 0x18d4 32 #define PCI_DEVICE_ID_CELESTICA_TIMECARD 0x1008 33 34 #define PCI_VENDOR_ID_OROLIA 0x1ad7 35 #define PCI_DEVICE_ID_OROLIA_ARTCARD 0xa000 36 37 #define PCI_VENDOR_ID_ADVA 0xad5a 38 #define PCI_DEVICE_ID_ADVA_TIMECARD 0x0400 39 40 static struct class timecard_class = { 41 .name = "timecard", 42 }; 43 44 struct ocp_reg { 45 u32 ctrl; 46 u32 status; 47 u32 select; 48 u32 version; 49 u32 time_ns; 50 u32 time_sec; 51 u32 __pad0[2]; 52 u32 adjust_ns; 53 u32 adjust_sec; 54 u32 __pad1[2]; 55 u32 offset_ns; 56 u32 offset_window_ns; 57 u32 __pad2[2]; 58 u32 drift_ns; 59 u32 drift_window_ns; 60 u32 __pad3[6]; 61 u32 servo_offset_p; 62 u32 servo_offset_i; 63 u32 servo_drift_p; 64 u32 servo_drift_i; 65 u32 status_offset; 66 u32 status_drift; 67 }; 68 69 struct ptp_ocp_servo_conf { 70 u32 servo_offset_p; 71 u32 servo_offset_i; 72 u32 servo_drift_p; 73 u32 servo_drift_i; 74 }; 75 76 #define OCP_CTRL_ENABLE BIT(0) 77 #define OCP_CTRL_ADJUST_TIME BIT(1) 78 #define OCP_CTRL_ADJUST_OFFSET BIT(2) 79 #define OCP_CTRL_ADJUST_DRIFT BIT(3) 80 #define OCP_CTRL_ADJUST_SERVO BIT(8) 81 #define OCP_CTRL_READ_TIME_REQ BIT(30) 82 #define OCP_CTRL_READ_TIME_DONE BIT(31) 83 84 #define OCP_STATUS_IN_SYNC BIT(0) 85 #define OCP_STATUS_IN_HOLDOVER BIT(1) 86 87 #define OCP_SELECT_CLK_NONE 0 88 #define OCP_SELECT_CLK_REG 0xfe 89 90 struct tod_reg { 91 u32 ctrl; 92 u32 status; 93 u32 uart_polarity; 94 u32 version; 95 u32 adj_sec; 96 u32 __pad0[3]; 97 u32 uart_baud; 98 u32 __pad1[3]; 99 u32 utc_status; 100 u32 leap; 101 }; 102 103 #define TOD_CTRL_PROTOCOL BIT(28) 104 #define TOD_CTRL_DISABLE_FMT_A BIT(17) 105 #define TOD_CTRL_DISABLE_FMT_B BIT(16) 106 #define TOD_CTRL_ENABLE BIT(0) 107 #define TOD_CTRL_GNSS_MASK GENMASK(3, 0) 108 #define TOD_CTRL_GNSS_SHIFT 24 109 110 #define TOD_STATUS_UTC_MASK GENMASK(7, 0) 111 #define TOD_STATUS_UTC_VALID BIT(8) 112 #define TOD_STATUS_LEAP_ANNOUNCE BIT(12) 113 #define TOD_STATUS_LEAP_VALID BIT(16) 114 115 struct ts_reg { 116 u32 enable; 117 u32 error; 118 u32 polarity; 119 u32 version; 120 u32 __pad0[4]; 121 u32 cable_delay; 122 u32 __pad1[3]; 123 u32 intr; 124 u32 intr_mask; 125 u32 event_count; 126 u32 __pad2[1]; 127 u32 ts_count; 128 u32 time_ns; 129 u32 time_sec; 130 u32 data_width; 131 u32 data; 132 }; 133 134 struct pps_reg { 135 u32 ctrl; 136 u32 status; 137 u32 __pad0[6]; 138 u32 cable_delay; 139 }; 140 141 #define PPS_STATUS_FILTER_ERR BIT(0) 142 #define PPS_STATUS_SUPERV_ERR BIT(1) 143 144 struct img_reg { 145 u32 version; 146 }; 147 148 struct gpio_reg { 149 u32 gpio1; 150 u32 __pad0; 151 u32 gpio2; 152 u32 __pad1; 153 }; 154 155 struct irig_master_reg { 156 u32 ctrl; 157 u32 status; 158 u32 __pad0; 159 u32 version; 160 u32 adj_sec; 161 u32 mode_ctrl; 162 }; 163 164 #define IRIG_M_CTRL_ENABLE BIT(0) 165 166 struct irig_slave_reg { 167 u32 ctrl; 168 u32 status; 169 u32 __pad0; 170 u32 version; 171 u32 adj_sec; 172 u32 mode_ctrl; 173 }; 174 175 #define IRIG_S_CTRL_ENABLE BIT(0) 176 177 struct dcf_master_reg { 178 u32 ctrl; 179 u32 status; 180 u32 __pad0; 181 u32 version; 182 u32 adj_sec; 183 }; 184 185 #define DCF_M_CTRL_ENABLE BIT(0) 186 187 struct dcf_slave_reg { 188 u32 ctrl; 189 u32 status; 190 u32 __pad0; 191 u32 version; 192 u32 adj_sec; 193 }; 194 195 #define DCF_S_CTRL_ENABLE BIT(0) 196 197 struct signal_reg { 198 u32 enable; 199 u32 status; 200 u32 polarity; 201 u32 version; 202 u32 __pad0[4]; 203 u32 cable_delay; 204 u32 __pad1[3]; 205 u32 intr; 206 u32 intr_mask; 207 u32 __pad2[2]; 208 u32 start_ns; 209 u32 start_sec; 210 u32 pulse_ns; 211 u32 pulse_sec; 212 u32 period_ns; 213 u32 period_sec; 214 u32 repeat_count; 215 }; 216 217 struct frequency_reg { 218 u32 ctrl; 219 u32 status; 220 }; 221 222 struct board_config_reg { 223 u32 mro50_serial_activate; 224 }; 225 226 #define FREQ_STATUS_VALID BIT(31) 227 #define FREQ_STATUS_ERROR BIT(30) 228 #define FREQ_STATUS_OVERRUN BIT(29) 229 #define FREQ_STATUS_MASK GENMASK(23, 0) 230 231 struct ptp_ocp_flash_info { 232 const char *name; 233 int pci_offset; 234 int data_size; 235 void *data; 236 }; 237 238 struct ptp_ocp_firmware_header { 239 char magic[4]; 240 __be16 pci_vendor_id; 241 __be16 pci_device_id; 242 __be32 image_size; 243 __be16 hw_revision; 244 __be16 crc; 245 }; 246 247 #define OCP_FIRMWARE_MAGIC_HEADER "OCPC" 248 249 struct ptp_ocp_i2c_info { 250 const char *name; 251 unsigned long fixed_rate; 252 size_t data_size; 253 void *data; 254 }; 255 256 struct ptp_ocp_ext_info { 257 int index; 258 irqreturn_t (*irq_fcn)(int irq, void *priv); 259 int (*enable)(void *priv, u32 req, bool enable); 260 }; 261 262 struct ptp_ocp_ext_src { 263 void __iomem *mem; 264 struct ptp_ocp *bp; 265 struct ptp_ocp_ext_info *info; 266 int irq_vec; 267 }; 268 269 enum ptp_ocp_sma_mode { 270 SMA_MODE_IN, 271 SMA_MODE_OUT, 272 }; 273 274 static struct dpll_pin_frequency ptp_ocp_sma_freq[] = { 275 DPLL_PIN_FREQUENCY_1PPS, 276 DPLL_PIN_FREQUENCY_10MHZ, 277 DPLL_PIN_FREQUENCY_IRIG_B, 278 DPLL_PIN_FREQUENCY_DCF77, 279 }; 280 281 struct ptp_ocp_sma_connector { 282 enum ptp_ocp_sma_mode mode; 283 bool fixed_fcn; 284 bool fixed_dir; 285 bool disabled; 286 u8 default_fcn; 287 struct dpll_pin *dpll_pin; 288 struct dpll_pin_properties dpll_prop; 289 }; 290 291 struct ocp_attr_group { 292 u64 cap; 293 const struct attribute_group *group; 294 }; 295 296 #define OCP_CAP_BASIC BIT(0) 297 #define OCP_CAP_SIGNAL BIT(1) 298 #define OCP_CAP_FREQ BIT(2) 299 300 struct ptp_ocp_signal { 301 ktime_t period; 302 ktime_t pulse; 303 ktime_t phase; 304 ktime_t start; 305 int duty; 306 bool polarity; 307 bool running; 308 }; 309 310 struct ptp_ocp_serial_port { 311 int line; 312 int baud; 313 }; 314 315 #define OCP_BOARD_ID_LEN 13 316 #define OCP_SERIAL_LEN 6 317 #define OCP_SMA_NUM 4 318 319 enum { 320 PORT_GNSS, 321 PORT_GNSS2, 322 PORT_MAC, /* miniature atomic clock */ 323 PORT_NMEA, 324 325 __PORT_COUNT, 326 }; 327 328 struct ptp_ocp { 329 struct pci_dev *pdev; 330 struct device dev; 331 spinlock_t lock; 332 struct ocp_reg __iomem *reg; 333 struct tod_reg __iomem *tod; 334 struct pps_reg __iomem *pps_to_ext; 335 struct pps_reg __iomem *pps_to_clk; 336 struct board_config_reg __iomem *board_config; 337 struct gpio_reg __iomem *pps_select; 338 struct gpio_reg __iomem *sma_map1; 339 struct gpio_reg __iomem *sma_map2; 340 struct irig_master_reg __iomem *irig_out; 341 struct irig_slave_reg __iomem *irig_in; 342 struct dcf_master_reg __iomem *dcf_out; 343 struct dcf_slave_reg __iomem *dcf_in; 344 struct tod_reg __iomem *nmea_out; 345 struct frequency_reg __iomem *freq_in[4]; 346 struct ptp_ocp_ext_src *signal_out[4]; 347 struct ptp_ocp_ext_src *pps; 348 struct ptp_ocp_ext_src *ts0; 349 struct ptp_ocp_ext_src *ts1; 350 struct ptp_ocp_ext_src *ts2; 351 struct ptp_ocp_ext_src *ts3; 352 struct ptp_ocp_ext_src *ts4; 353 struct ocp_art_gpio_reg __iomem *art_sma; 354 struct img_reg __iomem *image; 355 struct ptp_clock *ptp; 356 struct ptp_clock_info ptp_info; 357 struct platform_device *i2c_ctrl; 358 struct platform_device *spi_flash; 359 struct clk_hw *i2c_clk; 360 struct timer_list watchdog; 361 const struct attribute_group **attr_group; 362 const struct ptp_ocp_eeprom_map *eeprom_map; 363 struct dentry *debug_root; 364 bool sync; 365 time64_t gnss_lost; 366 struct delayed_work sync_work; 367 int id; 368 int n_irqs; 369 struct ptp_ocp_serial_port port[__PORT_COUNT]; 370 bool fw_loader; 371 u8 fw_tag; 372 u16 fw_version; 373 u8 board_id[OCP_BOARD_ID_LEN]; 374 u8 serial[OCP_SERIAL_LEN]; 375 bool has_eeprom_data; 376 u32 pps_req_map; 377 int flash_start; 378 u32 utc_tai_offset; 379 u32 ts_window_adjust; 380 u64 fw_cap; 381 struct ptp_ocp_signal signal[4]; 382 struct ptp_ocp_sma_connector sma[OCP_SMA_NUM]; 383 const struct ocp_sma_op *sma_op; 384 struct dpll_device *dpll; 385 }; 386 387 #define OCP_REQ_TIMESTAMP BIT(0) 388 #define OCP_REQ_PPS BIT(1) 389 390 struct ocp_resource { 391 unsigned long offset; 392 int size; 393 int irq_vec; 394 int (*setup)(struct ptp_ocp *bp, struct ocp_resource *r); 395 void *extra; 396 unsigned long bp_offset; 397 const char * const name; 398 }; 399 400 static int ptp_ocp_register_mem(struct ptp_ocp *bp, struct ocp_resource *r); 401 static int ptp_ocp_register_i2c(struct ptp_ocp *bp, struct ocp_resource *r); 402 static int ptp_ocp_register_spi(struct ptp_ocp *bp, struct ocp_resource *r); 403 static int ptp_ocp_register_serial(struct ptp_ocp *bp, struct ocp_resource *r); 404 static int ptp_ocp_register_ext(struct ptp_ocp *bp, struct ocp_resource *r); 405 static int ptp_ocp_fb_board_init(struct ptp_ocp *bp, struct ocp_resource *r); 406 static irqreturn_t ptp_ocp_ts_irq(int irq, void *priv); 407 static irqreturn_t ptp_ocp_signal_irq(int irq, void *priv); 408 static int ptp_ocp_ts_enable(void *priv, u32 req, bool enable); 409 static int ptp_ocp_signal_from_perout(struct ptp_ocp *bp, int gen, 410 struct ptp_perout_request *req); 411 static int ptp_ocp_signal_enable(void *priv, u32 req, bool enable); 412 static int ptp_ocp_sma_store(struct ptp_ocp *bp, const char *buf, int sma_nr); 413 414 static int ptp_ocp_art_board_init(struct ptp_ocp *bp, struct ocp_resource *r); 415 416 static int ptp_ocp_adva_board_init(struct ptp_ocp *bp, struct ocp_resource *r); 417 418 static const struct ocp_attr_group fb_timecard_groups[]; 419 420 static const struct ocp_attr_group art_timecard_groups[]; 421 422 static const struct ocp_attr_group adva_timecard_groups[]; 423 424 struct ptp_ocp_eeprom_map { 425 u16 off; 426 u16 len; 427 u32 bp_offset; 428 const void * const tag; 429 }; 430 431 #define EEPROM_ENTRY(addr, member) \ 432 .off = addr, \ 433 .len = sizeof_field(struct ptp_ocp, member), \ 434 .bp_offset = offsetof(struct ptp_ocp, member) 435 436 #define BP_MAP_ENTRY_ADDR(bp, map) ({ \ 437 (void *)((uintptr_t)(bp) + (map)->bp_offset); \ 438 }) 439 440 static struct ptp_ocp_eeprom_map fb_eeprom_map[] = { 441 { EEPROM_ENTRY(0x43, board_id) }, 442 { EEPROM_ENTRY(0x00, serial), .tag = "mac" }, 443 { } 444 }; 445 446 static struct ptp_ocp_eeprom_map art_eeprom_map[] = { 447 { EEPROM_ENTRY(0x200 + 0x43, board_id) }, 448 { EEPROM_ENTRY(0x200 + 0x63, serial) }, 449 { } 450 }; 451 452 #define bp_assign_entry(bp, res, val) ({ \ 453 uintptr_t addr = (uintptr_t)(bp) + (res)->bp_offset; \ 454 *(typeof(val) *)addr = val; \ 455 }) 456 457 #define OCP_RES_LOCATION(member) \ 458 .name = #member, .bp_offset = offsetof(struct ptp_ocp, member) 459 460 #define OCP_MEM_RESOURCE(member) \ 461 OCP_RES_LOCATION(member), .setup = ptp_ocp_register_mem 462 463 #define OCP_SERIAL_RESOURCE(member) \ 464 OCP_RES_LOCATION(member), .setup = ptp_ocp_register_serial 465 466 #define OCP_I2C_RESOURCE(member) \ 467 OCP_RES_LOCATION(member), .setup = ptp_ocp_register_i2c 468 469 #define OCP_SPI_RESOURCE(member) \ 470 OCP_RES_LOCATION(member), .setup = ptp_ocp_register_spi 471 472 #define OCP_EXT_RESOURCE(member) \ 473 OCP_RES_LOCATION(member), .setup = ptp_ocp_register_ext 474 475 /* This is the MSI vector mapping used. 476 * 0: PPS (TS5) 477 * 1: TS0 478 * 2: TS1 479 * 3: GNSS1 480 * 4: GNSS2 481 * 5: MAC 482 * 6: TS2 483 * 7: I2C controller 484 * 8: HWICAP (notused) 485 * 9: SPI Flash 486 * 10: NMEA 487 * 11: Signal Generator 1 488 * 12: Signal Generator 2 489 * 13: Signal Generator 3 490 * 14: Signal Generator 4 491 * 15: TS3 492 * 16: TS4 493 -- 494 * 8: Orolia TS1 495 * 10: Orolia TS2 496 * 11: Orolia TS0 (GNSS) 497 * 12: Orolia PPS 498 * 14: Orolia TS3 499 * 15: Orolia TS4 500 */ 501 502 static struct ocp_resource ocp_fb_resource[] = { 503 { 504 OCP_MEM_RESOURCE(reg), 505 .offset = 0x01000000, .size = 0x10000, 506 }, 507 { 508 OCP_EXT_RESOURCE(ts0), 509 .offset = 0x01010000, .size = 0x10000, .irq_vec = 1, 510 .extra = &(struct ptp_ocp_ext_info) { 511 .index = 0, 512 .irq_fcn = ptp_ocp_ts_irq, 513 .enable = ptp_ocp_ts_enable, 514 }, 515 }, 516 { 517 OCP_EXT_RESOURCE(ts1), 518 .offset = 0x01020000, .size = 0x10000, .irq_vec = 2, 519 .extra = &(struct ptp_ocp_ext_info) { 520 .index = 1, 521 .irq_fcn = ptp_ocp_ts_irq, 522 .enable = ptp_ocp_ts_enable, 523 }, 524 }, 525 { 526 OCP_EXT_RESOURCE(ts2), 527 .offset = 0x01060000, .size = 0x10000, .irq_vec = 6, 528 .extra = &(struct ptp_ocp_ext_info) { 529 .index = 2, 530 .irq_fcn = ptp_ocp_ts_irq, 531 .enable = ptp_ocp_ts_enable, 532 }, 533 }, 534 { 535 OCP_EXT_RESOURCE(ts3), 536 .offset = 0x01110000, .size = 0x10000, .irq_vec = 15, 537 .extra = &(struct ptp_ocp_ext_info) { 538 .index = 3, 539 .irq_fcn = ptp_ocp_ts_irq, 540 .enable = ptp_ocp_ts_enable, 541 }, 542 }, 543 { 544 OCP_EXT_RESOURCE(ts4), 545 .offset = 0x01120000, .size = 0x10000, .irq_vec = 16, 546 .extra = &(struct ptp_ocp_ext_info) { 547 .index = 4, 548 .irq_fcn = ptp_ocp_ts_irq, 549 .enable = ptp_ocp_ts_enable, 550 }, 551 }, 552 /* Timestamp for PHC and/or PPS generator */ 553 { 554 OCP_EXT_RESOURCE(pps), 555 .offset = 0x010C0000, .size = 0x10000, .irq_vec = 0, 556 .extra = &(struct ptp_ocp_ext_info) { 557 .index = 5, 558 .irq_fcn = ptp_ocp_ts_irq, 559 .enable = ptp_ocp_ts_enable, 560 }, 561 }, 562 { 563 OCP_EXT_RESOURCE(signal_out[0]), 564 .offset = 0x010D0000, .size = 0x10000, .irq_vec = 11, 565 .extra = &(struct ptp_ocp_ext_info) { 566 .index = 1, 567 .irq_fcn = ptp_ocp_signal_irq, 568 .enable = ptp_ocp_signal_enable, 569 }, 570 }, 571 { 572 OCP_EXT_RESOURCE(signal_out[1]), 573 .offset = 0x010E0000, .size = 0x10000, .irq_vec = 12, 574 .extra = &(struct ptp_ocp_ext_info) { 575 .index = 2, 576 .irq_fcn = ptp_ocp_signal_irq, 577 .enable = ptp_ocp_signal_enable, 578 }, 579 }, 580 { 581 OCP_EXT_RESOURCE(signal_out[2]), 582 .offset = 0x010F0000, .size = 0x10000, .irq_vec = 13, 583 .extra = &(struct ptp_ocp_ext_info) { 584 .index = 3, 585 .irq_fcn = ptp_ocp_signal_irq, 586 .enable = ptp_ocp_signal_enable, 587 }, 588 }, 589 { 590 OCP_EXT_RESOURCE(signal_out[3]), 591 .offset = 0x01100000, .size = 0x10000, .irq_vec = 14, 592 .extra = &(struct ptp_ocp_ext_info) { 593 .index = 4, 594 .irq_fcn = ptp_ocp_signal_irq, 595 .enable = ptp_ocp_signal_enable, 596 }, 597 }, 598 { 599 OCP_MEM_RESOURCE(pps_to_ext), 600 .offset = 0x01030000, .size = 0x10000, 601 }, 602 { 603 OCP_MEM_RESOURCE(pps_to_clk), 604 .offset = 0x01040000, .size = 0x10000, 605 }, 606 { 607 OCP_MEM_RESOURCE(tod), 608 .offset = 0x01050000, .size = 0x10000, 609 }, 610 { 611 OCP_MEM_RESOURCE(irig_in), 612 .offset = 0x01070000, .size = 0x10000, 613 }, 614 { 615 OCP_MEM_RESOURCE(irig_out), 616 .offset = 0x01080000, .size = 0x10000, 617 }, 618 { 619 OCP_MEM_RESOURCE(dcf_in), 620 .offset = 0x01090000, .size = 0x10000, 621 }, 622 { 623 OCP_MEM_RESOURCE(dcf_out), 624 .offset = 0x010A0000, .size = 0x10000, 625 }, 626 { 627 OCP_MEM_RESOURCE(nmea_out), 628 .offset = 0x010B0000, .size = 0x10000, 629 }, 630 { 631 OCP_MEM_RESOURCE(image), 632 .offset = 0x00020000, .size = 0x1000, 633 }, 634 { 635 OCP_MEM_RESOURCE(pps_select), 636 .offset = 0x00130000, .size = 0x1000, 637 }, 638 { 639 OCP_MEM_RESOURCE(sma_map1), 640 .offset = 0x00140000, .size = 0x1000, 641 }, 642 { 643 OCP_MEM_RESOURCE(sma_map2), 644 .offset = 0x00220000, .size = 0x1000, 645 }, 646 { 647 OCP_I2C_RESOURCE(i2c_ctrl), 648 .offset = 0x00150000, .size = 0x10000, .irq_vec = 7, 649 .extra = &(struct ptp_ocp_i2c_info) { 650 .name = "xiic-i2c", 651 .fixed_rate = 50000000, 652 .data_size = sizeof(struct xiic_i2c_platform_data), 653 .data = &(struct xiic_i2c_platform_data) { 654 .num_devices = 2, 655 .devices = (struct i2c_board_info[]) { 656 { I2C_BOARD_INFO("24c02", 0x50) }, 657 { I2C_BOARD_INFO("24mac402", 0x58), 658 .platform_data = "mac" }, 659 }, 660 }, 661 }, 662 }, 663 { 664 OCP_SERIAL_RESOURCE(port[PORT_GNSS]), 665 .offset = 0x00160000 + 0x1000, .irq_vec = 3, 666 .extra = &(struct ptp_ocp_serial_port) { 667 .baud = 115200, 668 }, 669 }, 670 { 671 OCP_SERIAL_RESOURCE(port[PORT_GNSS2]), 672 .offset = 0x00170000 + 0x1000, .irq_vec = 4, 673 .extra = &(struct ptp_ocp_serial_port) { 674 .baud = 115200, 675 }, 676 }, 677 { 678 OCP_SERIAL_RESOURCE(port[PORT_MAC]), 679 .offset = 0x00180000 + 0x1000, .irq_vec = 5, 680 .extra = &(struct ptp_ocp_serial_port) { 681 .baud = 57600, 682 }, 683 }, 684 { 685 OCP_SERIAL_RESOURCE(port[PORT_NMEA]), 686 .offset = 0x00190000 + 0x1000, .irq_vec = 10, 687 }, 688 { 689 OCP_SPI_RESOURCE(spi_flash), 690 .offset = 0x00310000, .size = 0x10000, .irq_vec = 9, 691 .extra = &(struct ptp_ocp_flash_info) { 692 .name = "xilinx_spi", .pci_offset = 0, 693 .data_size = sizeof(struct xspi_platform_data), 694 .data = &(struct xspi_platform_data) { 695 .num_chipselect = 1, 696 .bits_per_word = 8, 697 .num_devices = 1, 698 .force_irq = true, 699 .devices = &(struct spi_board_info) { 700 .modalias = "spi-nor", 701 }, 702 }, 703 }, 704 }, 705 { 706 OCP_MEM_RESOURCE(freq_in[0]), 707 .offset = 0x01200000, .size = 0x10000, 708 }, 709 { 710 OCP_MEM_RESOURCE(freq_in[1]), 711 .offset = 0x01210000, .size = 0x10000, 712 }, 713 { 714 OCP_MEM_RESOURCE(freq_in[2]), 715 .offset = 0x01220000, .size = 0x10000, 716 }, 717 { 718 OCP_MEM_RESOURCE(freq_in[3]), 719 .offset = 0x01230000, .size = 0x10000, 720 }, 721 { 722 .setup = ptp_ocp_fb_board_init, 723 .extra = &(struct ptp_ocp_servo_conf) { 724 .servo_offset_p = 0x2000, 725 .servo_offset_i = 0x1000, 726 .servo_drift_p = 0, 727 .servo_drift_i = 0, 728 }, 729 }, 730 { } 731 }; 732 733 #define OCP_ART_CONFIG_SIZE 144 734 #define OCP_ART_TEMP_TABLE_SIZE 368 735 736 struct ocp_art_gpio_reg { 737 struct { 738 u32 gpio; 739 u32 __pad[3]; 740 } map[4]; 741 }; 742 743 static struct ocp_resource ocp_art_resource[] = { 744 { 745 OCP_MEM_RESOURCE(reg), 746 .offset = 0x01000000, .size = 0x10000, 747 }, 748 { 749 OCP_SERIAL_RESOURCE(port[PORT_GNSS]), 750 .offset = 0x00160000 + 0x1000, .irq_vec = 3, 751 .extra = &(struct ptp_ocp_serial_port) { 752 .baud = 115200, 753 }, 754 }, 755 { 756 OCP_MEM_RESOURCE(art_sma), 757 .offset = 0x003C0000, .size = 0x1000, 758 }, 759 /* Timestamp associated with GNSS1 receiver PPS */ 760 { 761 OCP_EXT_RESOURCE(ts0), 762 .offset = 0x360000, .size = 0x20, .irq_vec = 12, 763 .extra = &(struct ptp_ocp_ext_info) { 764 .index = 0, 765 .irq_fcn = ptp_ocp_ts_irq, 766 .enable = ptp_ocp_ts_enable, 767 }, 768 }, 769 { 770 OCP_EXT_RESOURCE(ts1), 771 .offset = 0x380000, .size = 0x20, .irq_vec = 8, 772 .extra = &(struct ptp_ocp_ext_info) { 773 .index = 1, 774 .irq_fcn = ptp_ocp_ts_irq, 775 .enable = ptp_ocp_ts_enable, 776 }, 777 }, 778 { 779 OCP_EXT_RESOURCE(ts2), 780 .offset = 0x390000, .size = 0x20, .irq_vec = 10, 781 .extra = &(struct ptp_ocp_ext_info) { 782 .index = 2, 783 .irq_fcn = ptp_ocp_ts_irq, 784 .enable = ptp_ocp_ts_enable, 785 }, 786 }, 787 { 788 OCP_EXT_RESOURCE(ts3), 789 .offset = 0x3A0000, .size = 0x20, .irq_vec = 14, 790 .extra = &(struct ptp_ocp_ext_info) { 791 .index = 3, 792 .irq_fcn = ptp_ocp_ts_irq, 793 .enable = ptp_ocp_ts_enable, 794 }, 795 }, 796 { 797 OCP_EXT_RESOURCE(ts4), 798 .offset = 0x3B0000, .size = 0x20, .irq_vec = 15, 799 .extra = &(struct ptp_ocp_ext_info) { 800 .index = 4, 801 .irq_fcn = ptp_ocp_ts_irq, 802 .enable = ptp_ocp_ts_enable, 803 }, 804 }, 805 /* Timestamp associated with Internal PPS of the card */ 806 { 807 OCP_EXT_RESOURCE(pps), 808 .offset = 0x00330000, .size = 0x20, .irq_vec = 11, 809 .extra = &(struct ptp_ocp_ext_info) { 810 .index = 5, 811 .irq_fcn = ptp_ocp_ts_irq, 812 .enable = ptp_ocp_ts_enable, 813 }, 814 }, 815 { 816 OCP_SPI_RESOURCE(spi_flash), 817 .offset = 0x00310000, .size = 0x10000, .irq_vec = 9, 818 .extra = &(struct ptp_ocp_flash_info) { 819 .name = "spi_altera", .pci_offset = 0, 820 .data_size = sizeof(struct altera_spi_platform_data), 821 .data = &(struct altera_spi_platform_data) { 822 .num_chipselect = 1, 823 .num_devices = 1, 824 .devices = &(struct spi_board_info) { 825 .modalias = "spi-nor", 826 }, 827 }, 828 }, 829 }, 830 { 831 OCP_I2C_RESOURCE(i2c_ctrl), 832 .offset = 0x350000, .size = 0x100, .irq_vec = 4, 833 .extra = &(struct ptp_ocp_i2c_info) { 834 .name = "ocores-i2c", 835 .fixed_rate = 400000, 836 .data_size = sizeof(struct ocores_i2c_platform_data), 837 .data = &(struct ocores_i2c_platform_data) { 838 .clock_khz = 125000, 839 .bus_khz = 400, 840 .num_devices = 1, 841 .devices = &(struct i2c_board_info) { 842 I2C_BOARD_INFO("24c08", 0x50), 843 }, 844 }, 845 }, 846 }, 847 { 848 OCP_SERIAL_RESOURCE(port[PORT_MAC]), 849 .offset = 0x00190000, .irq_vec = 7, 850 .extra = &(struct ptp_ocp_serial_port) { 851 .baud = 9600, 852 }, 853 }, 854 { 855 OCP_MEM_RESOURCE(board_config), 856 .offset = 0x210000, .size = 0x1000, 857 }, 858 { 859 .setup = ptp_ocp_art_board_init, 860 .extra = &(struct ptp_ocp_servo_conf) { 861 .servo_offset_p = 0x2000, 862 .servo_offset_i = 0x1000, 863 .servo_drift_p = 0, 864 .servo_drift_i = 0, 865 }, 866 }, 867 { } 868 }; 869 870 static struct ocp_resource ocp_adva_resource[] = { 871 { 872 OCP_MEM_RESOURCE(reg), 873 .offset = 0x01000000, .size = 0x10000, 874 }, 875 { 876 OCP_EXT_RESOURCE(ts0), 877 .offset = 0x01010000, .size = 0x10000, .irq_vec = 1, 878 .extra = &(struct ptp_ocp_ext_info) { 879 .index = 0, 880 .irq_fcn = ptp_ocp_ts_irq, 881 .enable = ptp_ocp_ts_enable, 882 }, 883 }, 884 { 885 OCP_EXT_RESOURCE(ts1), 886 .offset = 0x01020000, .size = 0x10000, .irq_vec = 2, 887 .extra = &(struct ptp_ocp_ext_info) { 888 .index = 1, 889 .irq_fcn = ptp_ocp_ts_irq, 890 .enable = ptp_ocp_ts_enable, 891 }, 892 }, 893 { 894 OCP_EXT_RESOURCE(ts2), 895 .offset = 0x01060000, .size = 0x10000, .irq_vec = 6, 896 .extra = &(struct ptp_ocp_ext_info) { 897 .index = 2, 898 .irq_fcn = ptp_ocp_ts_irq, 899 .enable = ptp_ocp_ts_enable, 900 }, 901 }, 902 /* Timestamp for PHC and/or PPS generator */ 903 { 904 OCP_EXT_RESOURCE(pps), 905 .offset = 0x010C0000, .size = 0x10000, .irq_vec = 0, 906 .extra = &(struct ptp_ocp_ext_info) { 907 .index = 5, 908 .irq_fcn = ptp_ocp_ts_irq, 909 .enable = ptp_ocp_ts_enable, 910 }, 911 }, 912 { 913 OCP_EXT_RESOURCE(signal_out[0]), 914 .offset = 0x010D0000, .size = 0x10000, .irq_vec = 11, 915 .extra = &(struct ptp_ocp_ext_info) { 916 .index = 1, 917 .irq_fcn = ptp_ocp_signal_irq, 918 .enable = ptp_ocp_signal_enable, 919 }, 920 }, 921 { 922 OCP_EXT_RESOURCE(signal_out[1]), 923 .offset = 0x010E0000, .size = 0x10000, .irq_vec = 12, 924 .extra = &(struct ptp_ocp_ext_info) { 925 .index = 2, 926 .irq_fcn = ptp_ocp_signal_irq, 927 .enable = ptp_ocp_signal_enable, 928 }, 929 }, 930 { 931 OCP_MEM_RESOURCE(pps_to_ext), 932 .offset = 0x01030000, .size = 0x10000, 933 }, 934 { 935 OCP_MEM_RESOURCE(pps_to_clk), 936 .offset = 0x01040000, .size = 0x10000, 937 }, 938 { 939 OCP_MEM_RESOURCE(tod), 940 .offset = 0x01050000, .size = 0x10000, 941 }, 942 { 943 OCP_MEM_RESOURCE(image), 944 .offset = 0x00020000, .size = 0x1000, 945 }, 946 { 947 OCP_MEM_RESOURCE(pps_select), 948 .offset = 0x00130000, .size = 0x1000, 949 }, 950 { 951 OCP_MEM_RESOURCE(sma_map1), 952 .offset = 0x00140000, .size = 0x1000, 953 }, 954 { 955 OCP_MEM_RESOURCE(sma_map2), 956 .offset = 0x00220000, .size = 0x1000, 957 }, 958 { 959 OCP_SERIAL_RESOURCE(port[PORT_GNSS]), 960 .offset = 0x00160000 + 0x1000, .irq_vec = 3, 961 .extra = &(struct ptp_ocp_serial_port) { 962 .baud = 9600, 963 }, 964 }, 965 { 966 OCP_SERIAL_RESOURCE(port[PORT_MAC]), 967 .offset = 0x00180000 + 0x1000, .irq_vec = 5, 968 .extra = &(struct ptp_ocp_serial_port) { 969 .baud = 115200, 970 }, 971 }, 972 { 973 OCP_MEM_RESOURCE(freq_in[0]), 974 .offset = 0x01200000, .size = 0x10000, 975 }, 976 { 977 OCP_MEM_RESOURCE(freq_in[1]), 978 .offset = 0x01210000, .size = 0x10000, 979 }, 980 { 981 OCP_SPI_RESOURCE(spi_flash), 982 .offset = 0x00310400, .size = 0x10000, .irq_vec = 9, 983 .extra = &(struct ptp_ocp_flash_info) { 984 .name = "spi_altera", .pci_offset = 0, 985 .data_size = sizeof(struct altera_spi_platform_data), 986 .data = &(struct altera_spi_platform_data) { 987 .num_chipselect = 1, 988 .num_devices = 1, 989 .devices = &(struct spi_board_info) { 990 .modalias = "spi-nor", 991 }, 992 }, 993 }, 994 }, 995 { 996 OCP_I2C_RESOURCE(i2c_ctrl), 997 .offset = 0x150000, .size = 0x100, .irq_vec = 7, 998 .extra = &(struct ptp_ocp_i2c_info) { 999 .name = "ocores-i2c", 1000 .fixed_rate = 50000000, 1001 .data_size = sizeof(struct ocores_i2c_platform_data), 1002 .data = &(struct ocores_i2c_platform_data) { 1003 .clock_khz = 50000, 1004 .bus_khz = 100, 1005 .reg_io_width = 4, // 32-bit/4-byte 1006 .reg_shift = 2, // 32-bit addressing 1007 .num_devices = 2, 1008 .devices = (struct i2c_board_info[]) { 1009 { I2C_BOARD_INFO("24c02", 0x50) }, 1010 { I2C_BOARD_INFO("24mac402", 0x58), 1011 .platform_data = "mac" }, 1012 }, 1013 }, 1014 }, 1015 }, 1016 { 1017 .setup = ptp_ocp_adva_board_init, 1018 .extra = &(struct ptp_ocp_servo_conf) { 1019 .servo_offset_p = 0xc000, 1020 .servo_offset_i = 0x1000, 1021 .servo_drift_p = 0, 1022 .servo_drift_i = 0, 1023 }, 1024 }, 1025 { } 1026 }; 1027 1028 static const struct pci_device_id ptp_ocp_pcidev_id[] = { 1029 { PCI_DEVICE_DATA(FACEBOOK, TIMECARD, &ocp_fb_resource) }, 1030 { PCI_DEVICE_DATA(CELESTICA, TIMECARD, &ocp_fb_resource) }, 1031 { PCI_DEVICE_DATA(OROLIA, ARTCARD, &ocp_art_resource) }, 1032 { PCI_DEVICE_DATA(ADVA, TIMECARD, &ocp_adva_resource) }, 1033 { } 1034 }; 1035 MODULE_DEVICE_TABLE(pci, ptp_ocp_pcidev_id); 1036 1037 static DEFINE_MUTEX(ptp_ocp_lock); 1038 static DEFINE_IDR(ptp_ocp_idr); 1039 1040 struct ocp_selector { 1041 const char *name; 1042 int value; 1043 u64 frequency; 1044 }; 1045 1046 static const struct ocp_selector ptp_ocp_clock[] = { 1047 { .name = "NONE", .value = 0 }, 1048 { .name = "TOD", .value = 1 }, 1049 { .name = "IRIG", .value = 2 }, 1050 { .name = "PPS", .value = 3 }, 1051 { .name = "PTP", .value = 4 }, 1052 { .name = "RTC", .value = 5 }, 1053 { .name = "DCF", .value = 6 }, 1054 { .name = "REGS", .value = 0xfe }, 1055 { .name = "EXT", .value = 0xff }, 1056 { } 1057 }; 1058 1059 #define SMA_DISABLE BIT(16) 1060 #define SMA_ENABLE BIT(15) 1061 #define SMA_SELECT_MASK GENMASK(14, 0) 1062 1063 static const struct ocp_selector ptp_ocp_sma_in[] = { 1064 { .name = "10Mhz", .value = 0x0000, .frequency = 10000000 }, 1065 { .name = "PPS1", .value = 0x0001, .frequency = 1 }, 1066 { .name = "PPS2", .value = 0x0002, .frequency = 1 }, 1067 { .name = "TS1", .value = 0x0004, .frequency = 0 }, 1068 { .name = "TS2", .value = 0x0008, .frequency = 0 }, 1069 { .name = "IRIG", .value = 0x0010, .frequency = 10000 }, 1070 { .name = "DCF", .value = 0x0020, .frequency = 77500 }, 1071 { .name = "TS3", .value = 0x0040, .frequency = 0 }, 1072 { .name = "TS4", .value = 0x0080, .frequency = 0 }, 1073 { .name = "FREQ1", .value = 0x0100, .frequency = 0 }, 1074 { .name = "FREQ2", .value = 0x0200, .frequency = 0 }, 1075 { .name = "FREQ3", .value = 0x0400, .frequency = 0 }, 1076 { .name = "FREQ4", .value = 0x0800, .frequency = 0 }, 1077 { .name = "None", .value = SMA_DISABLE, .frequency = 0 }, 1078 { } 1079 }; 1080 1081 static const struct ocp_selector ptp_ocp_sma_out[] = { 1082 { .name = "10Mhz", .value = 0x0000, .frequency = 10000000 }, 1083 { .name = "PHC", .value = 0x0001, .frequency = 1 }, 1084 { .name = "MAC", .value = 0x0002, .frequency = 1 }, 1085 { .name = "GNSS1", .value = 0x0004, .frequency = 1 }, 1086 { .name = "GNSS2", .value = 0x0008, .frequency = 1 }, 1087 { .name = "IRIG", .value = 0x0010, .frequency = 10000 }, 1088 { .name = "DCF", .value = 0x0020, .frequency = 77000 }, 1089 { .name = "GEN1", .value = 0x0040 }, 1090 { .name = "GEN2", .value = 0x0080 }, 1091 { .name = "GEN3", .value = 0x0100 }, 1092 { .name = "GEN4", .value = 0x0200 }, 1093 { .name = "GND", .value = 0x2000 }, 1094 { .name = "VCC", .value = 0x4000 }, 1095 { } 1096 }; 1097 1098 static const struct ocp_selector ptp_ocp_art_sma_in[] = { 1099 { .name = "PPS1", .value = 0x0001, .frequency = 1 }, 1100 { .name = "10Mhz", .value = 0x0008, .frequency = 1000000 }, 1101 { } 1102 }; 1103 1104 static const struct ocp_selector ptp_ocp_art_sma_out[] = { 1105 { .name = "PHC", .value = 0x0002, .frequency = 1 }, 1106 { .name = "GNSS", .value = 0x0004, .frequency = 1 }, 1107 { .name = "10Mhz", .value = 0x0010, .frequency = 10000000 }, 1108 { } 1109 }; 1110 1111 static const struct ocp_selector ptp_ocp_adva_sma_in[] = { 1112 { .name = "10Mhz", .value = 0x0000, .frequency = 10000000}, 1113 { .name = "PPS1", .value = 0x0001, .frequency = 1 }, 1114 { .name = "PPS2", .value = 0x0002, .frequency = 1 }, 1115 { .name = "TS1", .value = 0x0004, .frequency = 0 }, 1116 { .name = "TS2", .value = 0x0008, .frequency = 0 }, 1117 { .name = "FREQ1", .value = 0x0100, .frequency = 0 }, 1118 { .name = "FREQ2", .value = 0x0200, .frequency = 0 }, 1119 { .name = "None", .value = SMA_DISABLE, .frequency = 0 }, 1120 { } 1121 }; 1122 1123 static const struct ocp_selector ptp_ocp_adva_sma_out[] = { 1124 { .name = "10Mhz", .value = 0x0000, .frequency = 10000000}, 1125 { .name = "PHC", .value = 0x0001, .frequency = 1 }, 1126 { .name = "MAC", .value = 0x0002, .frequency = 1 }, 1127 { .name = "GNSS1", .value = 0x0004, .frequency = 1 }, 1128 { .name = "GEN1", .value = 0x0040 }, 1129 { .name = "GEN2", .value = 0x0080 }, 1130 { .name = "GND", .value = 0x2000 }, 1131 { .name = "VCC", .value = 0x4000 }, 1132 { } 1133 }; 1134 1135 struct ocp_sma_op { 1136 const struct ocp_selector *tbl[2]; 1137 void (*init)(struct ptp_ocp *bp); 1138 u32 (*get)(struct ptp_ocp *bp, int sma_nr); 1139 int (*set_inputs)(struct ptp_ocp *bp, int sma_nr, u32 val); 1140 int (*set_output)(struct ptp_ocp *bp, int sma_nr, u32 val); 1141 }; 1142 1143 static void 1144 ptp_ocp_sma_init(struct ptp_ocp *bp) 1145 { 1146 return bp->sma_op->init(bp); 1147 } 1148 1149 static u32 1150 ptp_ocp_sma_get(struct ptp_ocp *bp, int sma_nr) 1151 { 1152 return bp->sma_op->get(bp, sma_nr); 1153 } 1154 1155 static int 1156 ptp_ocp_sma_set_inputs(struct ptp_ocp *bp, int sma_nr, u32 val) 1157 { 1158 return bp->sma_op->set_inputs(bp, sma_nr, val); 1159 } 1160 1161 static int 1162 ptp_ocp_sma_set_output(struct ptp_ocp *bp, int sma_nr, u32 val) 1163 { 1164 return bp->sma_op->set_output(bp, sma_nr, val); 1165 } 1166 1167 static const char * 1168 ptp_ocp_select_name_from_val(const struct ocp_selector *tbl, int val) 1169 { 1170 int i; 1171 1172 for (i = 0; tbl[i].name; i++) 1173 if (tbl[i].value == val) 1174 return tbl[i].name; 1175 return NULL; 1176 } 1177 1178 static int 1179 ptp_ocp_select_val_from_name(const struct ocp_selector *tbl, const char *name) 1180 { 1181 const char *select; 1182 int i; 1183 1184 for (i = 0; tbl[i].name; i++) { 1185 select = tbl[i].name; 1186 if (!strncasecmp(name, select, strlen(select))) 1187 return tbl[i].value; 1188 } 1189 return -EINVAL; 1190 } 1191 1192 static ssize_t 1193 ptp_ocp_select_table_show(const struct ocp_selector *tbl, char *buf) 1194 { 1195 ssize_t count; 1196 int i; 1197 1198 count = 0; 1199 for (i = 0; tbl[i].name; i++) 1200 count += sysfs_emit_at(buf, count, "%s ", tbl[i].name); 1201 if (count) 1202 count--; 1203 count += sysfs_emit_at(buf, count, "\n"); 1204 return count; 1205 } 1206 1207 static int 1208 __ptp_ocp_gettime_locked(struct ptp_ocp *bp, struct timespec64 *ts, 1209 struct ptp_system_timestamp *sts) 1210 { 1211 u32 ctrl, time_sec, time_ns; 1212 int i; 1213 1214 ptp_read_system_prets(sts); 1215 1216 ctrl = OCP_CTRL_READ_TIME_REQ | OCP_CTRL_ENABLE; 1217 iowrite32(ctrl, &bp->reg->ctrl); 1218 1219 for (i = 0; i < 100; i++) { 1220 ctrl = ioread32(&bp->reg->ctrl); 1221 if (ctrl & OCP_CTRL_READ_TIME_DONE) 1222 break; 1223 } 1224 ptp_read_system_postts(sts); 1225 1226 if (sts && bp->ts_window_adjust) { 1227 s64 ns = timespec64_to_ns(&sts->post_ts); 1228 1229 sts->post_ts = ns_to_timespec64(ns - bp->ts_window_adjust); 1230 } 1231 1232 time_ns = ioread32(&bp->reg->time_ns); 1233 time_sec = ioread32(&bp->reg->time_sec); 1234 1235 ts->tv_sec = time_sec; 1236 ts->tv_nsec = time_ns; 1237 1238 return ctrl & OCP_CTRL_READ_TIME_DONE ? 0 : -ETIMEDOUT; 1239 } 1240 1241 static int 1242 ptp_ocp_gettimex(struct ptp_clock_info *ptp_info, struct timespec64 *ts, 1243 struct ptp_system_timestamp *sts) 1244 { 1245 struct ptp_ocp *bp = container_of(ptp_info, struct ptp_ocp, ptp_info); 1246 unsigned long flags; 1247 int err; 1248 1249 spin_lock_irqsave(&bp->lock, flags); 1250 err = __ptp_ocp_gettime_locked(bp, ts, sts); 1251 spin_unlock_irqrestore(&bp->lock, flags); 1252 1253 return err; 1254 } 1255 1256 static void 1257 __ptp_ocp_settime_locked(struct ptp_ocp *bp, const struct timespec64 *ts) 1258 { 1259 u32 ctrl, time_sec, time_ns; 1260 u32 select; 1261 1262 time_ns = ts->tv_nsec; 1263 time_sec = ts->tv_sec; 1264 1265 select = ioread32(&bp->reg->select); 1266 iowrite32(OCP_SELECT_CLK_REG, &bp->reg->select); 1267 1268 iowrite32(time_ns, &bp->reg->adjust_ns); 1269 iowrite32(time_sec, &bp->reg->adjust_sec); 1270 1271 ctrl = OCP_CTRL_ADJUST_TIME | OCP_CTRL_ENABLE; 1272 iowrite32(ctrl, &bp->reg->ctrl); 1273 1274 /* restore clock selection */ 1275 iowrite32(select >> 16, &bp->reg->select); 1276 } 1277 1278 static int 1279 ptp_ocp_settime(struct ptp_clock_info *ptp_info, const struct timespec64 *ts) 1280 { 1281 struct ptp_ocp *bp = container_of(ptp_info, struct ptp_ocp, ptp_info); 1282 unsigned long flags; 1283 1284 spin_lock_irqsave(&bp->lock, flags); 1285 __ptp_ocp_settime_locked(bp, ts); 1286 spin_unlock_irqrestore(&bp->lock, flags); 1287 1288 return 0; 1289 } 1290 1291 static void 1292 __ptp_ocp_adjtime_locked(struct ptp_ocp *bp, u32 adj_val) 1293 { 1294 u32 select, ctrl; 1295 1296 select = ioread32(&bp->reg->select); 1297 iowrite32(OCP_SELECT_CLK_REG, &bp->reg->select); 1298 1299 iowrite32(adj_val, &bp->reg->offset_ns); 1300 iowrite32(NSEC_PER_SEC, &bp->reg->offset_window_ns); 1301 1302 ctrl = OCP_CTRL_ADJUST_OFFSET | OCP_CTRL_ENABLE; 1303 iowrite32(ctrl, &bp->reg->ctrl); 1304 1305 /* restore clock selection */ 1306 iowrite32(select >> 16, &bp->reg->select); 1307 } 1308 1309 static void 1310 ptp_ocp_adjtime_coarse(struct ptp_ocp *bp, s64 delta_ns) 1311 { 1312 struct timespec64 ts; 1313 unsigned long flags; 1314 int err; 1315 1316 spin_lock_irqsave(&bp->lock, flags); 1317 err = __ptp_ocp_gettime_locked(bp, &ts, NULL); 1318 if (likely(!err)) { 1319 set_normalized_timespec64(&ts, ts.tv_sec, 1320 ts.tv_nsec + delta_ns); 1321 __ptp_ocp_settime_locked(bp, &ts); 1322 } 1323 spin_unlock_irqrestore(&bp->lock, flags); 1324 } 1325 1326 static int 1327 ptp_ocp_adjtime(struct ptp_clock_info *ptp_info, s64 delta_ns) 1328 { 1329 struct ptp_ocp *bp = container_of(ptp_info, struct ptp_ocp, ptp_info); 1330 unsigned long flags; 1331 u32 adj_ns, sign; 1332 1333 if (delta_ns > NSEC_PER_SEC || -delta_ns > NSEC_PER_SEC) { 1334 ptp_ocp_adjtime_coarse(bp, delta_ns); 1335 return 0; 1336 } 1337 1338 sign = delta_ns < 0 ? BIT(31) : 0; 1339 adj_ns = sign ? -delta_ns : delta_ns; 1340 1341 spin_lock_irqsave(&bp->lock, flags); 1342 __ptp_ocp_adjtime_locked(bp, sign | adj_ns); 1343 spin_unlock_irqrestore(&bp->lock, flags); 1344 1345 return 0; 1346 } 1347 1348 static int 1349 ptp_ocp_null_adjfine(struct ptp_clock_info *ptp_info, long scaled_ppm) 1350 { 1351 if (scaled_ppm == 0) 1352 return 0; 1353 1354 return -EOPNOTSUPP; 1355 } 1356 1357 static s32 1358 ptp_ocp_null_getmaxphase(struct ptp_clock_info *ptp_info) 1359 { 1360 return 0; 1361 } 1362 1363 static int 1364 ptp_ocp_null_adjphase(struct ptp_clock_info *ptp_info, s32 phase_ns) 1365 { 1366 return -EOPNOTSUPP; 1367 } 1368 1369 static int 1370 ptp_ocp_enable(struct ptp_clock_info *ptp_info, struct ptp_clock_request *rq, 1371 int on) 1372 { 1373 struct ptp_ocp *bp = container_of(ptp_info, struct ptp_ocp, ptp_info); 1374 struct ptp_ocp_ext_src *ext = NULL; 1375 u32 req; 1376 int err; 1377 1378 switch (rq->type) { 1379 case PTP_CLK_REQ_EXTTS: 1380 req = OCP_REQ_TIMESTAMP; 1381 switch (rq->extts.index) { 1382 case 0: 1383 ext = bp->ts0; 1384 break; 1385 case 1: 1386 ext = bp->ts1; 1387 break; 1388 case 2: 1389 ext = bp->ts2; 1390 break; 1391 case 3: 1392 ext = bp->ts3; 1393 break; 1394 case 4: 1395 ext = bp->ts4; 1396 break; 1397 case 5: 1398 ext = bp->pps; 1399 break; 1400 } 1401 break; 1402 case PTP_CLK_REQ_PPS: 1403 req = OCP_REQ_PPS; 1404 ext = bp->pps; 1405 break; 1406 case PTP_CLK_REQ_PEROUT: 1407 switch (rq->perout.index) { 1408 case 0: 1409 /* This is a request for 1PPS on an output SMA. 1410 * Allow, but assume manual configuration. 1411 */ 1412 if (on && (rq->perout.period.sec != 1 || 1413 rq->perout.period.nsec != 0)) 1414 return -EINVAL; 1415 return 0; 1416 case 1: 1417 case 2: 1418 case 3: 1419 case 4: 1420 req = rq->perout.index - 1; 1421 ext = bp->signal_out[req]; 1422 err = ptp_ocp_signal_from_perout(bp, req, &rq->perout); 1423 if (err) 1424 return err; 1425 break; 1426 } 1427 break; 1428 default: 1429 return -EOPNOTSUPP; 1430 } 1431 1432 err = -ENXIO; 1433 if (ext) 1434 err = ext->info->enable(ext, req, on); 1435 1436 return err; 1437 } 1438 1439 static int 1440 ptp_ocp_verify(struct ptp_clock_info *ptp_info, unsigned pin, 1441 enum ptp_pin_function func, unsigned chan) 1442 { 1443 struct ptp_ocp *bp = container_of(ptp_info, struct ptp_ocp, ptp_info); 1444 char buf[16]; 1445 1446 switch (func) { 1447 case PTP_PF_NONE: 1448 snprintf(buf, sizeof(buf), "IN: None"); 1449 break; 1450 case PTP_PF_EXTTS: 1451 /* Allow timestamps, but require sysfs configuration. */ 1452 return 0; 1453 case PTP_PF_PEROUT: 1454 /* channel 0 is 1PPS from PHC. 1455 * channels 1..4 are the frequency generators. 1456 */ 1457 if (chan) 1458 snprintf(buf, sizeof(buf), "OUT: GEN%d", chan); 1459 else 1460 snprintf(buf, sizeof(buf), "OUT: PHC"); 1461 break; 1462 default: 1463 return -EOPNOTSUPP; 1464 } 1465 1466 return ptp_ocp_sma_store(bp, buf, pin + 1); 1467 } 1468 1469 static const struct ptp_clock_info ptp_ocp_clock_info = { 1470 .owner = THIS_MODULE, 1471 .name = KBUILD_MODNAME, 1472 .max_adj = 100000000, 1473 .gettimex64 = ptp_ocp_gettimex, 1474 .settime64 = ptp_ocp_settime, 1475 .adjtime = ptp_ocp_adjtime, 1476 .adjfine = ptp_ocp_null_adjfine, 1477 .adjphase = ptp_ocp_null_adjphase, 1478 .getmaxphase = ptp_ocp_null_getmaxphase, 1479 .enable = ptp_ocp_enable, 1480 .verify = ptp_ocp_verify, 1481 .pps = true, 1482 .n_ext_ts = 6, 1483 .n_per_out = 5, 1484 }; 1485 1486 static void 1487 __ptp_ocp_clear_drift_locked(struct ptp_ocp *bp) 1488 { 1489 u32 ctrl, select; 1490 1491 select = ioread32(&bp->reg->select); 1492 iowrite32(OCP_SELECT_CLK_REG, &bp->reg->select); 1493 1494 iowrite32(0, &bp->reg->drift_ns); 1495 1496 ctrl = OCP_CTRL_ADJUST_DRIFT | OCP_CTRL_ENABLE; 1497 iowrite32(ctrl, &bp->reg->ctrl); 1498 1499 /* restore clock selection */ 1500 iowrite32(select >> 16, &bp->reg->select); 1501 } 1502 1503 static void 1504 ptp_ocp_utc_distribute(struct ptp_ocp *bp, u32 val) 1505 { 1506 unsigned long flags; 1507 1508 spin_lock_irqsave(&bp->lock, flags); 1509 1510 bp->utc_tai_offset = val; 1511 1512 if (bp->irig_out) 1513 iowrite32(val, &bp->irig_out->adj_sec); 1514 if (bp->dcf_out) 1515 iowrite32(val, &bp->dcf_out->adj_sec); 1516 if (bp->nmea_out) 1517 iowrite32(val, &bp->nmea_out->adj_sec); 1518 1519 spin_unlock_irqrestore(&bp->lock, flags); 1520 } 1521 1522 static void 1523 ptp_ocp_watchdog(struct timer_list *t) 1524 { 1525 struct ptp_ocp *bp = from_timer(bp, t, watchdog); 1526 unsigned long flags; 1527 u32 status, utc_offset; 1528 1529 status = ioread32(&bp->pps_to_clk->status); 1530 1531 if (status & PPS_STATUS_SUPERV_ERR) { 1532 iowrite32(status, &bp->pps_to_clk->status); 1533 if (!bp->gnss_lost) { 1534 spin_lock_irqsave(&bp->lock, flags); 1535 __ptp_ocp_clear_drift_locked(bp); 1536 spin_unlock_irqrestore(&bp->lock, flags); 1537 bp->gnss_lost = ktime_get_real_seconds(); 1538 } 1539 1540 } else if (bp->gnss_lost) { 1541 bp->gnss_lost = 0; 1542 } 1543 1544 /* if GNSS provides correct data we can rely on 1545 * it to get leap second information 1546 */ 1547 if (bp->tod) { 1548 status = ioread32(&bp->tod->utc_status); 1549 utc_offset = status & TOD_STATUS_UTC_MASK; 1550 if (status & TOD_STATUS_UTC_VALID && 1551 utc_offset != bp->utc_tai_offset) 1552 ptp_ocp_utc_distribute(bp, utc_offset); 1553 } 1554 1555 mod_timer(&bp->watchdog, jiffies + HZ); 1556 } 1557 1558 static void 1559 ptp_ocp_estimate_pci_timing(struct ptp_ocp *bp) 1560 { 1561 ktime_t start, end, delay = U64_MAX; 1562 u32 ctrl; 1563 int i; 1564 1565 for (i = 0; i < 3; i++) { 1566 ctrl = ioread32(&bp->reg->ctrl); 1567 ctrl = OCP_CTRL_READ_TIME_REQ | OCP_CTRL_ENABLE; 1568 1569 iowrite32(ctrl, &bp->reg->ctrl); 1570 1571 start = ktime_get_raw_ns(); 1572 1573 ctrl = ioread32(&bp->reg->ctrl); 1574 1575 end = ktime_get_raw_ns(); 1576 1577 delay = min(delay, end - start); 1578 } 1579 bp->ts_window_adjust = (delay >> 5) * 3; 1580 } 1581 1582 static int 1583 ptp_ocp_init_clock(struct ptp_ocp *bp, struct ptp_ocp_servo_conf *servo_conf) 1584 { 1585 struct timespec64 ts; 1586 u32 ctrl; 1587 1588 ctrl = OCP_CTRL_ENABLE; 1589 iowrite32(ctrl, &bp->reg->ctrl); 1590 1591 /* servo configuration */ 1592 iowrite32(servo_conf->servo_offset_p, &bp->reg->servo_offset_p); 1593 iowrite32(servo_conf->servo_offset_i, &bp->reg->servo_offset_i); 1594 iowrite32(servo_conf->servo_drift_p, &bp->reg->servo_drift_p); 1595 iowrite32(servo_conf->servo_drift_p, &bp->reg->servo_drift_i); 1596 1597 /* latch servo values */ 1598 ctrl |= OCP_CTRL_ADJUST_SERVO; 1599 iowrite32(ctrl, &bp->reg->ctrl); 1600 1601 if ((ioread32(&bp->reg->ctrl) & OCP_CTRL_ENABLE) == 0) { 1602 dev_err(&bp->pdev->dev, "clock not enabled\n"); 1603 return -ENODEV; 1604 } 1605 1606 ptp_ocp_estimate_pci_timing(bp); 1607 1608 bp->sync = ioread32(&bp->reg->status) & OCP_STATUS_IN_SYNC; 1609 if (!bp->sync) { 1610 ktime_get_clocktai_ts64(&ts); 1611 ptp_ocp_settime(&bp->ptp_info, &ts); 1612 } 1613 1614 /* If there is a clock supervisor, then enable the watchdog */ 1615 if (bp->pps_to_clk) { 1616 timer_setup(&bp->watchdog, ptp_ocp_watchdog, 0); 1617 mod_timer(&bp->watchdog, jiffies + HZ); 1618 } 1619 1620 return 0; 1621 } 1622 1623 static void 1624 ptp_ocp_tod_init(struct ptp_ocp *bp) 1625 { 1626 u32 ctrl, reg; 1627 1628 ctrl = ioread32(&bp->tod->ctrl); 1629 ctrl |= TOD_CTRL_PROTOCOL | TOD_CTRL_ENABLE; 1630 ctrl &= ~(TOD_CTRL_DISABLE_FMT_A | TOD_CTRL_DISABLE_FMT_B); 1631 iowrite32(ctrl, &bp->tod->ctrl); 1632 1633 reg = ioread32(&bp->tod->utc_status); 1634 if (reg & TOD_STATUS_UTC_VALID) 1635 ptp_ocp_utc_distribute(bp, reg & TOD_STATUS_UTC_MASK); 1636 } 1637 1638 static const char * 1639 ptp_ocp_tod_proto_name(const int idx) 1640 { 1641 static const char * const proto_name[] = { 1642 "NMEA", "NMEA_ZDA", "NMEA_RMC", "NMEA_none", 1643 "UBX", "UBX_UTC", "UBX_LS", "UBX_none" 1644 }; 1645 return proto_name[idx]; 1646 } 1647 1648 static const char * 1649 ptp_ocp_tod_gnss_name(int idx) 1650 { 1651 static const char * const gnss_name[] = { 1652 "ALL", "COMBINED", "GPS", "GLONASS", "GALILEO", "BEIDOU", 1653 "Unknown" 1654 }; 1655 if (idx >= ARRAY_SIZE(gnss_name)) 1656 idx = ARRAY_SIZE(gnss_name) - 1; 1657 return gnss_name[idx]; 1658 } 1659 1660 static const char * 1661 ptp_ocp_tty_port_name(int idx) 1662 { 1663 static const char * const tty_name[] = { 1664 "GNSS", "GNSS2", "MAC", "NMEA" 1665 }; 1666 return tty_name[idx]; 1667 } 1668 1669 struct ptp_ocp_nvmem_match_info { 1670 struct ptp_ocp *bp; 1671 const void * const tag; 1672 }; 1673 1674 static int 1675 ptp_ocp_nvmem_match(struct device *dev, const void *data) 1676 { 1677 const struct ptp_ocp_nvmem_match_info *info = data; 1678 1679 dev = dev->parent; 1680 if (!i2c_verify_client(dev) || info->tag != dev->platform_data) 1681 return 0; 1682 1683 while ((dev = dev->parent)) 1684 if (dev->driver && !strcmp(dev->driver->name, KBUILD_MODNAME)) 1685 return info->bp == dev_get_drvdata(dev); 1686 return 0; 1687 } 1688 1689 static inline struct nvmem_device * 1690 ptp_ocp_nvmem_device_get(struct ptp_ocp *bp, const void * const tag) 1691 { 1692 struct ptp_ocp_nvmem_match_info info = { .bp = bp, .tag = tag }; 1693 1694 return nvmem_device_find(&info, ptp_ocp_nvmem_match); 1695 } 1696 1697 static inline void 1698 ptp_ocp_nvmem_device_put(struct nvmem_device **nvmemp) 1699 { 1700 if (!IS_ERR_OR_NULL(*nvmemp)) 1701 nvmem_device_put(*nvmemp); 1702 *nvmemp = NULL; 1703 } 1704 1705 static void 1706 ptp_ocp_read_eeprom(struct ptp_ocp *bp) 1707 { 1708 const struct ptp_ocp_eeprom_map *map; 1709 struct nvmem_device *nvmem; 1710 const void *tag; 1711 int ret; 1712 1713 if (!bp->i2c_ctrl) 1714 return; 1715 1716 tag = NULL; 1717 nvmem = NULL; 1718 1719 for (map = bp->eeprom_map; map->len; map++) { 1720 if (map->tag != tag) { 1721 tag = map->tag; 1722 ptp_ocp_nvmem_device_put(&nvmem); 1723 } 1724 if (!nvmem) { 1725 nvmem = ptp_ocp_nvmem_device_get(bp, tag); 1726 if (IS_ERR(nvmem)) { 1727 ret = PTR_ERR(nvmem); 1728 goto fail; 1729 } 1730 } 1731 ret = nvmem_device_read(nvmem, map->off, map->len, 1732 BP_MAP_ENTRY_ADDR(bp, map)); 1733 if (ret != map->len) 1734 goto fail; 1735 } 1736 1737 bp->has_eeprom_data = true; 1738 1739 out: 1740 ptp_ocp_nvmem_device_put(&nvmem); 1741 return; 1742 1743 fail: 1744 dev_err(&bp->pdev->dev, "could not read eeprom: %d\n", ret); 1745 goto out; 1746 } 1747 1748 static struct device * 1749 ptp_ocp_find_flash(struct ptp_ocp *bp) 1750 { 1751 struct device *dev, *last; 1752 1753 last = NULL; 1754 dev = &bp->spi_flash->dev; 1755 1756 while ((dev = device_find_any_child(dev))) { 1757 if (!strcmp("mtd", dev_bus_name(dev))) 1758 break; 1759 put_device(last); 1760 last = dev; 1761 } 1762 put_device(last); 1763 1764 return dev; 1765 } 1766 1767 static int 1768 ptp_ocp_devlink_fw_image(struct devlink *devlink, const struct firmware *fw, 1769 const u8 **data, size_t *size) 1770 { 1771 struct ptp_ocp *bp = devlink_priv(devlink); 1772 const struct ptp_ocp_firmware_header *hdr; 1773 size_t offset, length; 1774 u16 crc; 1775 1776 hdr = (const struct ptp_ocp_firmware_header *)fw->data; 1777 if (memcmp(hdr->magic, OCP_FIRMWARE_MAGIC_HEADER, 4)) { 1778 devlink_flash_update_status_notify(devlink, 1779 "No firmware header found, cancel firmware upgrade", 1780 NULL, 0, 0); 1781 return -EINVAL; 1782 } 1783 1784 if (be16_to_cpu(hdr->pci_vendor_id) != bp->pdev->vendor || 1785 be16_to_cpu(hdr->pci_device_id) != bp->pdev->device) { 1786 devlink_flash_update_status_notify(devlink, 1787 "Firmware image compatibility check failed", 1788 NULL, 0, 0); 1789 return -EINVAL; 1790 } 1791 1792 offset = sizeof(*hdr); 1793 length = be32_to_cpu(hdr->image_size); 1794 if (length != (fw->size - offset)) { 1795 devlink_flash_update_status_notify(devlink, 1796 "Firmware image size check failed", 1797 NULL, 0, 0); 1798 return -EINVAL; 1799 } 1800 1801 crc = crc16(0xffff, &fw->data[offset], length); 1802 if (be16_to_cpu(hdr->crc) != crc) { 1803 devlink_flash_update_status_notify(devlink, 1804 "Firmware image CRC check failed", 1805 NULL, 0, 0); 1806 return -EINVAL; 1807 } 1808 1809 *data = &fw->data[offset]; 1810 *size = length; 1811 1812 return 0; 1813 } 1814 1815 static int 1816 ptp_ocp_devlink_flash(struct devlink *devlink, struct device *dev, 1817 const struct firmware *fw) 1818 { 1819 struct mtd_info *mtd = dev_get_drvdata(dev); 1820 struct ptp_ocp *bp = devlink_priv(devlink); 1821 size_t off, len, size, resid, wrote; 1822 struct erase_info erase; 1823 size_t base, blksz; 1824 const u8 *data; 1825 int err; 1826 1827 err = ptp_ocp_devlink_fw_image(devlink, fw, &data, &size); 1828 if (err) 1829 goto out; 1830 1831 off = 0; 1832 base = bp->flash_start; 1833 blksz = 4096; 1834 resid = size; 1835 1836 while (resid) { 1837 devlink_flash_update_status_notify(devlink, "Flashing", 1838 NULL, off, size); 1839 1840 len = min_t(size_t, resid, blksz); 1841 erase.addr = base + off; 1842 erase.len = blksz; 1843 1844 err = mtd_erase(mtd, &erase); 1845 if (err) 1846 goto out; 1847 1848 err = mtd_write(mtd, base + off, len, &wrote, data + off); 1849 if (err) 1850 goto out; 1851 1852 off += blksz; 1853 resid -= len; 1854 } 1855 out: 1856 return err; 1857 } 1858 1859 static int 1860 ptp_ocp_devlink_flash_update(struct devlink *devlink, 1861 struct devlink_flash_update_params *params, 1862 struct netlink_ext_ack *extack) 1863 { 1864 struct ptp_ocp *bp = devlink_priv(devlink); 1865 struct device *dev; 1866 const char *msg; 1867 int err; 1868 1869 dev = ptp_ocp_find_flash(bp); 1870 if (!dev) { 1871 dev_err(&bp->pdev->dev, "Can't find Flash SPI adapter\n"); 1872 return -ENODEV; 1873 } 1874 1875 devlink_flash_update_status_notify(devlink, "Preparing to flash", 1876 NULL, 0, 0); 1877 1878 err = ptp_ocp_devlink_flash(devlink, dev, params->fw); 1879 1880 msg = err ? "Flash error" : "Flash complete"; 1881 devlink_flash_update_status_notify(devlink, msg, NULL, 0, 0); 1882 1883 put_device(dev); 1884 return err; 1885 } 1886 1887 static int 1888 ptp_ocp_devlink_info_get(struct devlink *devlink, struct devlink_info_req *req, 1889 struct netlink_ext_ack *extack) 1890 { 1891 struct ptp_ocp *bp = devlink_priv(devlink); 1892 const char *fw_image; 1893 char buf[32]; 1894 int err; 1895 1896 fw_image = bp->fw_loader ? "loader" : "fw"; 1897 sprintf(buf, "%d.%d", bp->fw_tag, bp->fw_version); 1898 err = devlink_info_version_running_put(req, fw_image, buf); 1899 if (err) 1900 return err; 1901 1902 if (!bp->has_eeprom_data) { 1903 ptp_ocp_read_eeprom(bp); 1904 if (!bp->has_eeprom_data) 1905 return 0; 1906 } 1907 1908 sprintf(buf, "%pM", bp->serial); 1909 err = devlink_info_serial_number_put(req, buf); 1910 if (err) 1911 return err; 1912 1913 err = devlink_info_version_fixed_put(req, 1914 DEVLINK_INFO_VERSION_GENERIC_BOARD_ID, 1915 bp->board_id); 1916 if (err) 1917 return err; 1918 1919 return 0; 1920 } 1921 1922 static const struct devlink_ops ptp_ocp_devlink_ops = { 1923 .flash_update = ptp_ocp_devlink_flash_update, 1924 .info_get = ptp_ocp_devlink_info_get, 1925 }; 1926 1927 static void __iomem * 1928 __ptp_ocp_get_mem(struct ptp_ocp *bp, resource_size_t start, int size) 1929 { 1930 struct resource res = DEFINE_RES_MEM_NAMED(start, size, "ptp_ocp"); 1931 1932 return devm_ioremap_resource(&bp->pdev->dev, &res); 1933 } 1934 1935 static void __iomem * 1936 ptp_ocp_get_mem(struct ptp_ocp *bp, struct ocp_resource *r) 1937 { 1938 resource_size_t start; 1939 1940 start = pci_resource_start(bp->pdev, 0) + r->offset; 1941 return __ptp_ocp_get_mem(bp, start, r->size); 1942 } 1943 1944 static int 1945 ptp_ocp_register_spi(struct ptp_ocp *bp, struct ocp_resource *r) 1946 { 1947 struct ptp_ocp_flash_info *info; 1948 struct pci_dev *pdev = bp->pdev; 1949 struct platform_device *p; 1950 struct resource res[2]; 1951 resource_size_t start; 1952 int id; 1953 1954 start = pci_resource_start(pdev, 0) + r->offset; 1955 res[0] = DEFINE_RES_MEM(start, r->size); 1956 res[1] = DEFINE_RES_IRQ(pci_irq_vector(pdev, r->irq_vec)); 1957 1958 info = r->extra; 1959 id = pci_dev_id(pdev) << 1; 1960 id += info->pci_offset; 1961 1962 p = platform_device_register_resndata(&pdev->dev, info->name, id, 1963 res, ARRAY_SIZE(res), info->data, 1964 info->data_size); 1965 if (IS_ERR(p)) 1966 return PTR_ERR(p); 1967 1968 bp_assign_entry(bp, r, p); 1969 1970 return 0; 1971 } 1972 1973 static struct platform_device * 1974 ptp_ocp_i2c_bus(struct pci_dev *pdev, struct ocp_resource *r, int id) 1975 { 1976 struct ptp_ocp_i2c_info *info; 1977 struct resource res[2]; 1978 resource_size_t start; 1979 1980 info = r->extra; 1981 start = pci_resource_start(pdev, 0) + r->offset; 1982 res[0] = DEFINE_RES_MEM(start, r->size); 1983 res[1] = DEFINE_RES_IRQ(pci_irq_vector(pdev, r->irq_vec)); 1984 1985 return platform_device_register_resndata(&pdev->dev, info->name, 1986 id, res, ARRAY_SIZE(res), 1987 info->data, info->data_size); 1988 } 1989 1990 static int 1991 ptp_ocp_register_i2c(struct ptp_ocp *bp, struct ocp_resource *r) 1992 { 1993 struct pci_dev *pdev = bp->pdev; 1994 struct ptp_ocp_i2c_info *info; 1995 struct platform_device *p; 1996 struct clk_hw *clk; 1997 char buf[32]; 1998 int id; 1999 2000 info = r->extra; 2001 id = pci_dev_id(bp->pdev); 2002 2003 sprintf(buf, "AXI.%d", id); 2004 clk = clk_hw_register_fixed_rate(&pdev->dev, buf, NULL, 0, 2005 info->fixed_rate); 2006 if (IS_ERR(clk)) 2007 return PTR_ERR(clk); 2008 bp->i2c_clk = clk; 2009 2010 sprintf(buf, "%s.%d", info->name, id); 2011 devm_clk_hw_register_clkdev(&pdev->dev, clk, NULL, buf); 2012 p = ptp_ocp_i2c_bus(bp->pdev, r, id); 2013 if (IS_ERR(p)) 2014 return PTR_ERR(p); 2015 2016 bp_assign_entry(bp, r, p); 2017 2018 return 0; 2019 } 2020 2021 /* The expectation is that this is triggered only on error. */ 2022 static irqreturn_t 2023 ptp_ocp_signal_irq(int irq, void *priv) 2024 { 2025 struct ptp_ocp_ext_src *ext = priv; 2026 struct signal_reg __iomem *reg = ext->mem; 2027 struct ptp_ocp *bp = ext->bp; 2028 u32 enable, status; 2029 int gen; 2030 2031 gen = ext->info->index - 1; 2032 2033 enable = ioread32(®->enable); 2034 status = ioread32(®->status); 2035 2036 /* disable generator on error */ 2037 if (status || !enable) { 2038 iowrite32(0, ®->intr_mask); 2039 iowrite32(0, ®->enable); 2040 bp->signal[gen].running = false; 2041 } 2042 2043 iowrite32(0, ®->intr); /* ack interrupt */ 2044 2045 return IRQ_HANDLED; 2046 } 2047 2048 static int 2049 ptp_ocp_signal_set(struct ptp_ocp *bp, int gen, struct ptp_ocp_signal *s) 2050 { 2051 struct ptp_system_timestamp sts; 2052 struct timespec64 ts; 2053 ktime_t start_ns; 2054 int err; 2055 2056 if (!s->period) 2057 return 0; 2058 2059 if (!s->pulse) 2060 s->pulse = ktime_divns(s->period * s->duty, 100); 2061 2062 err = ptp_ocp_gettimex(&bp->ptp_info, &ts, &sts); 2063 if (err) 2064 return err; 2065 2066 start_ns = ktime_set(ts.tv_sec, ts.tv_nsec) + NSEC_PER_MSEC; 2067 if (!s->start) { 2068 /* roundup() does not work on 32-bit systems */ 2069 s->start = DIV64_U64_ROUND_UP(start_ns, s->period); 2070 s->start *= s->period; 2071 s->start = ktime_add(s->start, s->phase); 2072 } 2073 2074 if (s->duty < 1 || s->duty > 99) 2075 return -EINVAL; 2076 2077 if (s->pulse < 1 || s->pulse > s->period) 2078 return -EINVAL; 2079 2080 if (s->start < start_ns) 2081 return -EINVAL; 2082 2083 bp->signal[gen] = *s; 2084 2085 return 0; 2086 } 2087 2088 static int 2089 ptp_ocp_signal_from_perout(struct ptp_ocp *bp, int gen, 2090 struct ptp_perout_request *req) 2091 { 2092 struct ptp_ocp_signal s = { }; 2093 2094 if (req->flags & ~(PTP_PEROUT_DUTY_CYCLE | 2095 PTP_PEROUT_PHASE)) 2096 return -EOPNOTSUPP; 2097 2098 s.polarity = bp->signal[gen].polarity; 2099 s.period = ktime_set(req->period.sec, req->period.nsec); 2100 if (!s.period) 2101 return 0; 2102 2103 if (req->flags & PTP_PEROUT_DUTY_CYCLE) { 2104 s.pulse = ktime_set(req->on.sec, req->on.nsec); 2105 s.duty = ktime_divns(s.pulse * 100, s.period); 2106 } 2107 2108 if (req->flags & PTP_PEROUT_PHASE) 2109 s.phase = ktime_set(req->phase.sec, req->phase.nsec); 2110 else 2111 s.start = ktime_set(req->start.sec, req->start.nsec); 2112 2113 return ptp_ocp_signal_set(bp, gen, &s); 2114 } 2115 2116 static int 2117 ptp_ocp_signal_enable(void *priv, u32 req, bool enable) 2118 { 2119 struct ptp_ocp_ext_src *ext = priv; 2120 struct signal_reg __iomem *reg = ext->mem; 2121 struct ptp_ocp *bp = ext->bp; 2122 struct timespec64 ts; 2123 int gen; 2124 2125 gen = ext->info->index - 1; 2126 2127 iowrite32(0, ®->intr_mask); 2128 iowrite32(0, ®->enable); 2129 bp->signal[gen].running = false; 2130 if (!enable) 2131 return 0; 2132 2133 ts = ktime_to_timespec64(bp->signal[gen].start); 2134 iowrite32(ts.tv_sec, ®->start_sec); 2135 iowrite32(ts.tv_nsec, ®->start_ns); 2136 2137 ts = ktime_to_timespec64(bp->signal[gen].period); 2138 iowrite32(ts.tv_sec, ®->period_sec); 2139 iowrite32(ts.tv_nsec, ®->period_ns); 2140 2141 ts = ktime_to_timespec64(bp->signal[gen].pulse); 2142 iowrite32(ts.tv_sec, ®->pulse_sec); 2143 iowrite32(ts.tv_nsec, ®->pulse_ns); 2144 2145 iowrite32(bp->signal[gen].polarity, ®->polarity); 2146 iowrite32(0, ®->repeat_count); 2147 2148 iowrite32(0, ®->intr); /* clear interrupt state */ 2149 iowrite32(1, ®->intr_mask); /* enable interrupt */ 2150 iowrite32(3, ®->enable); /* valid & enable */ 2151 2152 bp->signal[gen].running = true; 2153 2154 return 0; 2155 } 2156 2157 static irqreturn_t 2158 ptp_ocp_ts_irq(int irq, void *priv) 2159 { 2160 struct ptp_ocp_ext_src *ext = priv; 2161 struct ts_reg __iomem *reg = ext->mem; 2162 struct ptp_clock_event ev; 2163 u32 sec, nsec; 2164 2165 if (ext == ext->bp->pps) { 2166 if (ext->bp->pps_req_map & OCP_REQ_PPS) { 2167 ev.type = PTP_CLOCK_PPS; 2168 ptp_clock_event(ext->bp->ptp, &ev); 2169 } 2170 2171 if ((ext->bp->pps_req_map & ~OCP_REQ_PPS) == 0) 2172 goto out; 2173 } 2174 2175 /* XXX should fix API - this converts s/ns -> ts -> s/ns */ 2176 sec = ioread32(®->time_sec); 2177 nsec = ioread32(®->time_ns); 2178 2179 ev.type = PTP_CLOCK_EXTTS; 2180 ev.index = ext->info->index; 2181 ev.timestamp = sec * NSEC_PER_SEC + nsec; 2182 2183 ptp_clock_event(ext->bp->ptp, &ev); 2184 2185 out: 2186 iowrite32(1, ®->intr); /* write 1 to ack */ 2187 2188 return IRQ_HANDLED; 2189 } 2190 2191 static int 2192 ptp_ocp_ts_enable(void *priv, u32 req, bool enable) 2193 { 2194 struct ptp_ocp_ext_src *ext = priv; 2195 struct ts_reg __iomem *reg = ext->mem; 2196 struct ptp_ocp *bp = ext->bp; 2197 2198 if (ext == bp->pps) { 2199 u32 old_map = bp->pps_req_map; 2200 2201 if (enable) 2202 bp->pps_req_map |= req; 2203 else 2204 bp->pps_req_map &= ~req; 2205 2206 /* if no state change, just return */ 2207 if ((!!old_map ^ !!bp->pps_req_map) == 0) 2208 return 0; 2209 } 2210 2211 if (enable) { 2212 iowrite32(1, ®->enable); 2213 iowrite32(1, ®->intr_mask); 2214 iowrite32(1, ®->intr); 2215 } else { 2216 iowrite32(0, ®->intr_mask); 2217 iowrite32(0, ®->enable); 2218 } 2219 2220 return 0; 2221 } 2222 2223 static void 2224 ptp_ocp_unregister_ext(struct ptp_ocp_ext_src *ext) 2225 { 2226 ext->info->enable(ext, ~0, false); 2227 pci_free_irq(ext->bp->pdev, ext->irq_vec, ext); 2228 kfree(ext); 2229 } 2230 2231 static int 2232 ptp_ocp_register_ext(struct ptp_ocp *bp, struct ocp_resource *r) 2233 { 2234 struct pci_dev *pdev = bp->pdev; 2235 struct ptp_ocp_ext_src *ext; 2236 int err; 2237 2238 ext = kzalloc(sizeof(*ext), GFP_KERNEL); 2239 if (!ext) 2240 return -ENOMEM; 2241 2242 ext->mem = ptp_ocp_get_mem(bp, r); 2243 if (IS_ERR(ext->mem)) { 2244 err = PTR_ERR(ext->mem); 2245 goto out; 2246 } 2247 2248 ext->bp = bp; 2249 ext->info = r->extra; 2250 ext->irq_vec = r->irq_vec; 2251 2252 err = pci_request_irq(pdev, r->irq_vec, ext->info->irq_fcn, NULL, 2253 ext, "ocp%d.%s", bp->id, r->name); 2254 if (err) { 2255 dev_err(&pdev->dev, "Could not get irq %d\n", r->irq_vec); 2256 goto out; 2257 } 2258 2259 bp_assign_entry(bp, r, ext); 2260 2261 return 0; 2262 2263 out: 2264 kfree(ext); 2265 return err; 2266 } 2267 2268 static int 2269 ptp_ocp_serial_line(struct ptp_ocp *bp, struct ocp_resource *r) 2270 { 2271 struct pci_dev *pdev = bp->pdev; 2272 struct uart_8250_port uart; 2273 2274 /* Setting UPF_IOREMAP and leaving port.membase unspecified lets 2275 * the serial port device claim and release the pci resource. 2276 */ 2277 memset(&uart, 0, sizeof(uart)); 2278 uart.port.dev = &pdev->dev; 2279 uart.port.iotype = UPIO_MEM; 2280 uart.port.regshift = 2; 2281 uart.port.mapbase = pci_resource_start(pdev, 0) + r->offset; 2282 uart.port.irq = pci_irq_vector(pdev, r->irq_vec); 2283 uart.port.uartclk = 50000000; 2284 uart.port.flags = UPF_FIXED_TYPE | UPF_IOREMAP | UPF_NO_THRE_TEST; 2285 uart.port.type = PORT_16550A; 2286 2287 return serial8250_register_8250_port(&uart); 2288 } 2289 2290 static int 2291 ptp_ocp_register_serial(struct ptp_ocp *bp, struct ocp_resource *r) 2292 { 2293 struct ptp_ocp_serial_port *p = (struct ptp_ocp_serial_port *)r->extra; 2294 struct ptp_ocp_serial_port port = {}; 2295 2296 port.line = ptp_ocp_serial_line(bp, r); 2297 if (port.line < 0) 2298 return port.line; 2299 2300 if (p) 2301 port.baud = p->baud; 2302 2303 bp_assign_entry(bp, r, port); 2304 2305 return 0; 2306 } 2307 2308 static int 2309 ptp_ocp_register_mem(struct ptp_ocp *bp, struct ocp_resource *r) 2310 { 2311 void __iomem *mem; 2312 2313 mem = ptp_ocp_get_mem(bp, r); 2314 if (IS_ERR(mem)) 2315 return PTR_ERR(mem); 2316 2317 bp_assign_entry(bp, r, mem); 2318 2319 return 0; 2320 } 2321 2322 static void 2323 ptp_ocp_nmea_out_init(struct ptp_ocp *bp) 2324 { 2325 if (!bp->nmea_out) 2326 return; 2327 2328 iowrite32(0, &bp->nmea_out->ctrl); /* disable */ 2329 iowrite32(7, &bp->nmea_out->uart_baud); /* 115200 */ 2330 iowrite32(1, &bp->nmea_out->ctrl); /* enable */ 2331 } 2332 2333 static void 2334 _ptp_ocp_signal_init(struct ptp_ocp_signal *s, struct signal_reg __iomem *reg) 2335 { 2336 u32 val; 2337 2338 iowrite32(0, ®->enable); /* disable */ 2339 2340 val = ioread32(®->polarity); 2341 s->polarity = val ? true : false; 2342 s->duty = 50; 2343 } 2344 2345 static void 2346 ptp_ocp_signal_init(struct ptp_ocp *bp) 2347 { 2348 int i; 2349 2350 for (i = 0; i < 4; i++) 2351 if (bp->signal_out[i]) 2352 _ptp_ocp_signal_init(&bp->signal[i], 2353 bp->signal_out[i]->mem); 2354 } 2355 2356 static void 2357 ptp_ocp_attr_group_del(struct ptp_ocp *bp) 2358 { 2359 sysfs_remove_groups(&bp->dev.kobj, bp->attr_group); 2360 kfree(bp->attr_group); 2361 } 2362 2363 static int 2364 ptp_ocp_attr_group_add(struct ptp_ocp *bp, 2365 const struct ocp_attr_group *attr_tbl) 2366 { 2367 int count, i; 2368 int err; 2369 2370 count = 0; 2371 for (i = 0; attr_tbl[i].cap; i++) 2372 if (attr_tbl[i].cap & bp->fw_cap) 2373 count++; 2374 2375 bp->attr_group = kcalloc(count + 1, sizeof(struct attribute_group *), 2376 GFP_KERNEL); 2377 if (!bp->attr_group) 2378 return -ENOMEM; 2379 2380 count = 0; 2381 for (i = 0; attr_tbl[i].cap; i++) 2382 if (attr_tbl[i].cap & bp->fw_cap) 2383 bp->attr_group[count++] = attr_tbl[i].group; 2384 2385 err = sysfs_create_groups(&bp->dev.kobj, bp->attr_group); 2386 if (err) 2387 bp->attr_group[0] = NULL; 2388 2389 return err; 2390 } 2391 2392 static void 2393 ptp_ocp_enable_fpga(u32 __iomem *reg, u32 bit, bool enable) 2394 { 2395 u32 ctrl; 2396 bool on; 2397 2398 ctrl = ioread32(reg); 2399 on = ctrl & bit; 2400 if (on ^ enable) { 2401 ctrl &= ~bit; 2402 ctrl |= enable ? bit : 0; 2403 iowrite32(ctrl, reg); 2404 } 2405 } 2406 2407 static void 2408 ptp_ocp_irig_out(struct ptp_ocp *bp, bool enable) 2409 { 2410 return ptp_ocp_enable_fpga(&bp->irig_out->ctrl, 2411 IRIG_M_CTRL_ENABLE, enable); 2412 } 2413 2414 static void 2415 ptp_ocp_irig_in(struct ptp_ocp *bp, bool enable) 2416 { 2417 return ptp_ocp_enable_fpga(&bp->irig_in->ctrl, 2418 IRIG_S_CTRL_ENABLE, enable); 2419 } 2420 2421 static void 2422 ptp_ocp_dcf_out(struct ptp_ocp *bp, bool enable) 2423 { 2424 return ptp_ocp_enable_fpga(&bp->dcf_out->ctrl, 2425 DCF_M_CTRL_ENABLE, enable); 2426 } 2427 2428 static void 2429 ptp_ocp_dcf_in(struct ptp_ocp *bp, bool enable) 2430 { 2431 return ptp_ocp_enable_fpga(&bp->dcf_in->ctrl, 2432 DCF_S_CTRL_ENABLE, enable); 2433 } 2434 2435 static void 2436 __handle_signal_outputs(struct ptp_ocp *bp, u32 val) 2437 { 2438 ptp_ocp_irig_out(bp, val & 0x00100010); 2439 ptp_ocp_dcf_out(bp, val & 0x00200020); 2440 } 2441 2442 static void 2443 __handle_signal_inputs(struct ptp_ocp *bp, u32 val) 2444 { 2445 ptp_ocp_irig_in(bp, val & 0x00100010); 2446 ptp_ocp_dcf_in(bp, val & 0x00200020); 2447 } 2448 2449 static u32 2450 ptp_ocp_sma_fb_get(struct ptp_ocp *bp, int sma_nr) 2451 { 2452 u32 __iomem *gpio; 2453 u32 shift; 2454 2455 if (bp->sma[sma_nr - 1].fixed_fcn) 2456 return (sma_nr - 1) & 1; 2457 2458 if (bp->sma[sma_nr - 1].mode == SMA_MODE_IN) 2459 gpio = sma_nr > 2 ? &bp->sma_map2->gpio1 : &bp->sma_map1->gpio1; 2460 else 2461 gpio = sma_nr > 2 ? &bp->sma_map1->gpio2 : &bp->sma_map2->gpio2; 2462 shift = sma_nr & 1 ? 0 : 16; 2463 2464 return (ioread32(gpio) >> shift) & 0xffff; 2465 } 2466 2467 static int 2468 ptp_ocp_sma_fb_set_output(struct ptp_ocp *bp, int sma_nr, u32 val) 2469 { 2470 u32 reg, mask, shift; 2471 unsigned long flags; 2472 u32 __iomem *gpio; 2473 2474 gpio = sma_nr > 2 ? &bp->sma_map1->gpio2 : &bp->sma_map2->gpio2; 2475 shift = sma_nr & 1 ? 0 : 16; 2476 2477 mask = 0xffff << (16 - shift); 2478 2479 spin_lock_irqsave(&bp->lock, flags); 2480 2481 reg = ioread32(gpio); 2482 reg = (reg & mask) | (val << shift); 2483 2484 __handle_signal_outputs(bp, reg); 2485 2486 iowrite32(reg, gpio); 2487 2488 spin_unlock_irqrestore(&bp->lock, flags); 2489 2490 return 0; 2491 } 2492 2493 static int 2494 ptp_ocp_sma_fb_set_inputs(struct ptp_ocp *bp, int sma_nr, u32 val) 2495 { 2496 u32 reg, mask, shift; 2497 unsigned long flags; 2498 u32 __iomem *gpio; 2499 2500 gpio = sma_nr > 2 ? &bp->sma_map2->gpio1 : &bp->sma_map1->gpio1; 2501 shift = sma_nr & 1 ? 0 : 16; 2502 2503 mask = 0xffff << (16 - shift); 2504 2505 spin_lock_irqsave(&bp->lock, flags); 2506 2507 reg = ioread32(gpio); 2508 reg = (reg & mask) | (val << shift); 2509 2510 __handle_signal_inputs(bp, reg); 2511 2512 iowrite32(reg, gpio); 2513 2514 spin_unlock_irqrestore(&bp->lock, flags); 2515 2516 return 0; 2517 } 2518 2519 static void 2520 ptp_ocp_sma_fb_init(struct ptp_ocp *bp) 2521 { 2522 struct dpll_pin_properties prop = { 2523 .board_label = NULL, 2524 .type = DPLL_PIN_TYPE_EXT, 2525 .capabilities = DPLL_PIN_CAPABILITIES_DIRECTION_CAN_CHANGE, 2526 .freq_supported_num = ARRAY_SIZE(ptp_ocp_sma_freq), 2527 .freq_supported = ptp_ocp_sma_freq, 2528 2529 }; 2530 u32 reg; 2531 int i; 2532 2533 /* defaults */ 2534 for (i = 0; i < OCP_SMA_NUM; i++) { 2535 bp->sma[i].default_fcn = i & 1; 2536 bp->sma[i].dpll_prop = prop; 2537 bp->sma[i].dpll_prop.board_label = 2538 bp->ptp_info.pin_config[i].name; 2539 } 2540 bp->sma[0].mode = SMA_MODE_IN; 2541 bp->sma[1].mode = SMA_MODE_IN; 2542 bp->sma[2].mode = SMA_MODE_OUT; 2543 bp->sma[3].mode = SMA_MODE_OUT; 2544 /* If no SMA1 map, the pin functions and directions are fixed. */ 2545 if (!bp->sma_map1) { 2546 for (i = 0; i < OCP_SMA_NUM; i++) { 2547 bp->sma[i].fixed_fcn = true; 2548 bp->sma[i].fixed_dir = true; 2549 bp->sma[1].dpll_prop.capabilities &= 2550 ~DPLL_PIN_CAPABILITIES_DIRECTION_CAN_CHANGE; 2551 } 2552 return; 2553 } 2554 2555 /* If SMA2 GPIO output map is all 1, it is not present. 2556 * This indicates the firmware has fixed direction SMA pins. 2557 */ 2558 reg = ioread32(&bp->sma_map2->gpio2); 2559 if (reg == 0xffffffff) { 2560 for (i = 0; i < OCP_SMA_NUM; i++) 2561 bp->sma[i].fixed_dir = true; 2562 } else { 2563 reg = ioread32(&bp->sma_map1->gpio1); 2564 bp->sma[0].mode = reg & BIT(15) ? SMA_MODE_IN : SMA_MODE_OUT; 2565 bp->sma[1].mode = reg & BIT(31) ? SMA_MODE_IN : SMA_MODE_OUT; 2566 2567 reg = ioread32(&bp->sma_map1->gpio2); 2568 bp->sma[2].mode = reg & BIT(15) ? SMA_MODE_OUT : SMA_MODE_IN; 2569 bp->sma[3].mode = reg & BIT(31) ? SMA_MODE_OUT : SMA_MODE_IN; 2570 } 2571 } 2572 2573 static const struct ocp_sma_op ocp_fb_sma_op = { 2574 .tbl = { ptp_ocp_sma_in, ptp_ocp_sma_out }, 2575 .init = ptp_ocp_sma_fb_init, 2576 .get = ptp_ocp_sma_fb_get, 2577 .set_inputs = ptp_ocp_sma_fb_set_inputs, 2578 .set_output = ptp_ocp_sma_fb_set_output, 2579 }; 2580 2581 static int 2582 ptp_ocp_sma_adva_set_output(struct ptp_ocp *bp, int sma_nr, u32 val) 2583 { 2584 u32 reg, mask, shift; 2585 unsigned long flags; 2586 u32 __iomem *gpio; 2587 2588 gpio = sma_nr > 2 ? &bp->sma_map1->gpio2 : &bp->sma_map2->gpio2; 2589 shift = sma_nr & 1 ? 0 : 16; 2590 2591 mask = 0xffff << (16 - shift); 2592 2593 spin_lock_irqsave(&bp->lock, flags); 2594 2595 reg = ioread32(gpio); 2596 reg = (reg & mask) | (val << shift); 2597 2598 iowrite32(reg, gpio); 2599 2600 spin_unlock_irqrestore(&bp->lock, flags); 2601 2602 return 0; 2603 } 2604 2605 static int 2606 ptp_ocp_sma_adva_set_inputs(struct ptp_ocp *bp, int sma_nr, u32 val) 2607 { 2608 u32 reg, mask, shift; 2609 unsigned long flags; 2610 u32 __iomem *gpio; 2611 2612 gpio = sma_nr > 2 ? &bp->sma_map2->gpio1 : &bp->sma_map1->gpio1; 2613 shift = sma_nr & 1 ? 0 : 16; 2614 2615 mask = 0xffff << (16 - shift); 2616 2617 spin_lock_irqsave(&bp->lock, flags); 2618 2619 reg = ioread32(gpio); 2620 reg = (reg & mask) | (val << shift); 2621 2622 iowrite32(reg, gpio); 2623 2624 spin_unlock_irqrestore(&bp->lock, flags); 2625 2626 return 0; 2627 } 2628 2629 static const struct ocp_sma_op ocp_adva_sma_op = { 2630 .tbl = { ptp_ocp_adva_sma_in, ptp_ocp_adva_sma_out }, 2631 .init = ptp_ocp_sma_fb_init, 2632 .get = ptp_ocp_sma_fb_get, 2633 .set_inputs = ptp_ocp_sma_adva_set_inputs, 2634 .set_output = ptp_ocp_sma_adva_set_output, 2635 }; 2636 2637 static int 2638 ptp_ocp_set_pins(struct ptp_ocp *bp) 2639 { 2640 struct ptp_pin_desc *config; 2641 int i; 2642 2643 config = kcalloc(4, sizeof(*config), GFP_KERNEL); 2644 if (!config) 2645 return -ENOMEM; 2646 2647 for (i = 0; i < 4; i++) { 2648 sprintf(config[i].name, "sma%d", i + 1); 2649 config[i].index = i; 2650 } 2651 2652 bp->ptp_info.n_pins = 4; 2653 bp->ptp_info.pin_config = config; 2654 2655 return 0; 2656 } 2657 2658 static void 2659 ptp_ocp_fb_set_version(struct ptp_ocp *bp) 2660 { 2661 u64 cap = OCP_CAP_BASIC; 2662 u32 version; 2663 2664 version = ioread32(&bp->image->version); 2665 2666 /* if lower 16 bits are empty, this is the fw loader. */ 2667 if ((version & 0xffff) == 0) { 2668 version = version >> 16; 2669 bp->fw_loader = true; 2670 } 2671 2672 bp->fw_tag = version >> 15; 2673 bp->fw_version = version & 0x7fff; 2674 2675 if (bp->fw_tag) { 2676 /* FPGA firmware */ 2677 if (version >= 5) 2678 cap |= OCP_CAP_SIGNAL | OCP_CAP_FREQ; 2679 } else { 2680 /* SOM firmware */ 2681 if (version >= 19) 2682 cap |= OCP_CAP_SIGNAL; 2683 if (version >= 20) 2684 cap |= OCP_CAP_FREQ; 2685 } 2686 2687 bp->fw_cap = cap; 2688 } 2689 2690 /* FB specific board initializers; last "resource" registered. */ 2691 static int 2692 ptp_ocp_fb_board_init(struct ptp_ocp *bp, struct ocp_resource *r) 2693 { 2694 int err; 2695 2696 bp->flash_start = 1024 * 4096; 2697 bp->eeprom_map = fb_eeprom_map; 2698 bp->fw_version = ioread32(&bp->image->version); 2699 bp->sma_op = &ocp_fb_sma_op; 2700 2701 ptp_ocp_fb_set_version(bp); 2702 2703 ptp_ocp_tod_init(bp); 2704 ptp_ocp_nmea_out_init(bp); 2705 ptp_ocp_signal_init(bp); 2706 2707 err = ptp_ocp_attr_group_add(bp, fb_timecard_groups); 2708 if (err) 2709 return err; 2710 2711 err = ptp_ocp_set_pins(bp); 2712 if (err) 2713 return err; 2714 ptp_ocp_sma_init(bp); 2715 2716 return ptp_ocp_init_clock(bp, r->extra); 2717 } 2718 2719 static bool 2720 ptp_ocp_allow_irq(struct ptp_ocp *bp, struct ocp_resource *r) 2721 { 2722 bool allow = !r->irq_vec || r->irq_vec < bp->n_irqs; 2723 2724 if (!allow) 2725 dev_err(&bp->pdev->dev, "irq %d out of range, skipping %s\n", 2726 r->irq_vec, r->name); 2727 return allow; 2728 } 2729 2730 static int 2731 ptp_ocp_register_resources(struct ptp_ocp *bp, kernel_ulong_t driver_data) 2732 { 2733 struct ocp_resource *r, *table; 2734 int err = 0; 2735 2736 table = (struct ocp_resource *)driver_data; 2737 for (r = table; r->setup; r++) { 2738 if (!ptp_ocp_allow_irq(bp, r)) 2739 continue; 2740 err = r->setup(bp, r); 2741 if (err) { 2742 dev_err(&bp->pdev->dev, 2743 "Could not register %s: err %d\n", 2744 r->name, err); 2745 break; 2746 } 2747 } 2748 return err; 2749 } 2750 2751 static void 2752 ptp_ocp_art_sma_init(struct ptp_ocp *bp) 2753 { 2754 struct dpll_pin_properties prop = { 2755 .board_label = NULL, 2756 .type = DPLL_PIN_TYPE_EXT, 2757 .capabilities = 0, 2758 .freq_supported_num = ARRAY_SIZE(ptp_ocp_sma_freq), 2759 .freq_supported = ptp_ocp_sma_freq, 2760 2761 }; 2762 u32 reg; 2763 int i; 2764 2765 /* defaults */ 2766 bp->sma[0].mode = SMA_MODE_IN; 2767 bp->sma[1].mode = SMA_MODE_IN; 2768 bp->sma[2].mode = SMA_MODE_OUT; 2769 bp->sma[3].mode = SMA_MODE_OUT; 2770 2771 bp->sma[0].default_fcn = 0x08; /* IN: 10Mhz */ 2772 bp->sma[1].default_fcn = 0x01; /* IN: PPS1 */ 2773 bp->sma[2].default_fcn = 0x10; /* OUT: 10Mhz */ 2774 bp->sma[3].default_fcn = 0x02; /* OUT: PHC */ 2775 2776 for (i = 0; i < OCP_SMA_NUM; i++) { 2777 /* If no SMA map, the pin functions and directions are fixed. */ 2778 bp->sma[i].dpll_prop = prop; 2779 bp->sma[i].dpll_prop.board_label = 2780 bp->ptp_info.pin_config[i].name; 2781 if (!bp->art_sma) { 2782 bp->sma[i].fixed_fcn = true; 2783 bp->sma[i].fixed_dir = true; 2784 continue; 2785 } 2786 reg = ioread32(&bp->art_sma->map[i].gpio); 2787 2788 switch (reg & 0xff) { 2789 case 0: 2790 bp->sma[i].fixed_fcn = true; 2791 bp->sma[i].fixed_dir = true; 2792 break; 2793 case 1: 2794 case 8: 2795 bp->sma[i].mode = SMA_MODE_IN; 2796 bp->sma[i].dpll_prop.capabilities = 2797 DPLL_PIN_CAPABILITIES_DIRECTION_CAN_CHANGE; 2798 break; 2799 default: 2800 bp->sma[i].mode = SMA_MODE_OUT; 2801 bp->sma[i].dpll_prop.capabilities = 2802 DPLL_PIN_CAPABILITIES_DIRECTION_CAN_CHANGE; 2803 break; 2804 } 2805 } 2806 } 2807 2808 static u32 2809 ptp_ocp_art_sma_get(struct ptp_ocp *bp, int sma_nr) 2810 { 2811 if (bp->sma[sma_nr - 1].fixed_fcn) 2812 return bp->sma[sma_nr - 1].default_fcn; 2813 2814 return ioread32(&bp->art_sma->map[sma_nr - 1].gpio) & 0xff; 2815 } 2816 2817 /* note: store 0 is considered invalid. */ 2818 static int 2819 ptp_ocp_art_sma_set(struct ptp_ocp *bp, int sma_nr, u32 val) 2820 { 2821 unsigned long flags; 2822 u32 __iomem *gpio; 2823 int err = 0; 2824 u32 reg; 2825 2826 val &= SMA_SELECT_MASK; 2827 if (hweight32(val) > 1) 2828 return -EINVAL; 2829 2830 gpio = &bp->art_sma->map[sma_nr - 1].gpio; 2831 2832 spin_lock_irqsave(&bp->lock, flags); 2833 reg = ioread32(gpio); 2834 if (((reg >> 16) & val) == 0) { 2835 err = -EOPNOTSUPP; 2836 } else { 2837 reg = (reg & 0xff00) | (val & 0xff); 2838 iowrite32(reg, gpio); 2839 } 2840 spin_unlock_irqrestore(&bp->lock, flags); 2841 2842 return err; 2843 } 2844 2845 static const struct ocp_sma_op ocp_art_sma_op = { 2846 .tbl = { ptp_ocp_art_sma_in, ptp_ocp_art_sma_out }, 2847 .init = ptp_ocp_art_sma_init, 2848 .get = ptp_ocp_art_sma_get, 2849 .set_inputs = ptp_ocp_art_sma_set, 2850 .set_output = ptp_ocp_art_sma_set, 2851 }; 2852 2853 /* ART specific board initializers; last "resource" registered. */ 2854 static int 2855 ptp_ocp_art_board_init(struct ptp_ocp *bp, struct ocp_resource *r) 2856 { 2857 int err; 2858 2859 bp->flash_start = 0x1000000; 2860 bp->eeprom_map = art_eeprom_map; 2861 bp->fw_cap = OCP_CAP_BASIC; 2862 bp->fw_version = ioread32(&bp->reg->version); 2863 bp->fw_tag = 2; 2864 bp->sma_op = &ocp_art_sma_op; 2865 2866 /* Enable MAC serial port during initialisation */ 2867 iowrite32(1, &bp->board_config->mro50_serial_activate); 2868 2869 err = ptp_ocp_set_pins(bp); 2870 if (err) 2871 return err; 2872 ptp_ocp_sma_init(bp); 2873 2874 err = ptp_ocp_attr_group_add(bp, art_timecard_groups); 2875 if (err) 2876 return err; 2877 2878 return ptp_ocp_init_clock(bp, r->extra); 2879 } 2880 2881 /* ADVA specific board initializers; last "resource" registered. */ 2882 static int 2883 ptp_ocp_adva_board_init(struct ptp_ocp *bp, struct ocp_resource *r) 2884 { 2885 int err; 2886 u32 version; 2887 2888 bp->flash_start = 0xA00000; 2889 bp->eeprom_map = fb_eeprom_map; 2890 bp->sma_op = &ocp_adva_sma_op; 2891 2892 version = ioread32(&bp->image->version); 2893 /* if lower 16 bits are empty, this is the fw loader. */ 2894 if ((version & 0xffff) == 0) { 2895 version = version >> 16; 2896 bp->fw_loader = true; 2897 } 2898 bp->fw_tag = 3; 2899 bp->fw_version = version & 0xffff; 2900 bp->fw_cap = OCP_CAP_BASIC | OCP_CAP_SIGNAL | OCP_CAP_FREQ; 2901 2902 ptp_ocp_tod_init(bp); 2903 ptp_ocp_nmea_out_init(bp); 2904 ptp_ocp_signal_init(bp); 2905 2906 err = ptp_ocp_attr_group_add(bp, adva_timecard_groups); 2907 if (err) 2908 return err; 2909 2910 err = ptp_ocp_set_pins(bp); 2911 if (err) 2912 return err; 2913 ptp_ocp_sma_init(bp); 2914 2915 return ptp_ocp_init_clock(bp, r->extra); 2916 } 2917 2918 static ssize_t 2919 ptp_ocp_show_output(const struct ocp_selector *tbl, u32 val, char *buf, 2920 int def_val) 2921 { 2922 const char *name; 2923 ssize_t count; 2924 2925 count = sysfs_emit(buf, "OUT: "); 2926 name = ptp_ocp_select_name_from_val(tbl, val); 2927 if (!name) 2928 name = ptp_ocp_select_name_from_val(tbl, def_val); 2929 count += sysfs_emit_at(buf, count, "%s\n", name); 2930 return count; 2931 } 2932 2933 static ssize_t 2934 ptp_ocp_show_inputs(const struct ocp_selector *tbl, u32 val, char *buf, 2935 int def_val) 2936 { 2937 const char *name; 2938 ssize_t count; 2939 int i; 2940 2941 count = sysfs_emit(buf, "IN: "); 2942 for (i = 0; tbl[i].name; i++) { 2943 if (val & tbl[i].value) { 2944 name = tbl[i].name; 2945 count += sysfs_emit_at(buf, count, "%s ", name); 2946 } 2947 } 2948 if (!val && def_val >= 0) { 2949 name = ptp_ocp_select_name_from_val(tbl, def_val); 2950 count += sysfs_emit_at(buf, count, "%s ", name); 2951 } 2952 if (count) 2953 count--; 2954 count += sysfs_emit_at(buf, count, "\n"); 2955 return count; 2956 } 2957 2958 static int 2959 sma_parse_inputs(const struct ocp_selector * const tbl[], const char *buf, 2960 enum ptp_ocp_sma_mode *mode) 2961 { 2962 int idx, count, dir; 2963 char **argv; 2964 int ret; 2965 2966 argv = argv_split(GFP_KERNEL, buf, &count); 2967 if (!argv) 2968 return -ENOMEM; 2969 2970 ret = -EINVAL; 2971 if (!count) 2972 goto out; 2973 2974 idx = 0; 2975 dir = *mode == SMA_MODE_IN ? 0 : 1; 2976 if (!strcasecmp("IN:", argv[0])) { 2977 dir = 0; 2978 idx++; 2979 } 2980 if (!strcasecmp("OUT:", argv[0])) { 2981 dir = 1; 2982 idx++; 2983 } 2984 *mode = dir == 0 ? SMA_MODE_IN : SMA_MODE_OUT; 2985 2986 ret = 0; 2987 for (; idx < count; idx++) 2988 ret |= ptp_ocp_select_val_from_name(tbl[dir], argv[idx]); 2989 if (ret < 0) 2990 ret = -EINVAL; 2991 2992 out: 2993 argv_free(argv); 2994 return ret; 2995 } 2996 2997 static ssize_t 2998 ptp_ocp_sma_show(struct ptp_ocp *bp, int sma_nr, char *buf, 2999 int default_in_val, int default_out_val) 3000 { 3001 struct ptp_ocp_sma_connector *sma = &bp->sma[sma_nr - 1]; 3002 const struct ocp_selector * const *tbl; 3003 u32 val; 3004 3005 tbl = bp->sma_op->tbl; 3006 val = ptp_ocp_sma_get(bp, sma_nr) & SMA_SELECT_MASK; 3007 3008 if (sma->mode == SMA_MODE_IN) { 3009 if (sma->disabled) 3010 val = SMA_DISABLE; 3011 return ptp_ocp_show_inputs(tbl[0], val, buf, default_in_val); 3012 } 3013 3014 return ptp_ocp_show_output(tbl[1], val, buf, default_out_val); 3015 } 3016 3017 static ssize_t 3018 sma1_show(struct device *dev, struct device_attribute *attr, char *buf) 3019 { 3020 struct ptp_ocp *bp = dev_get_drvdata(dev); 3021 3022 return ptp_ocp_sma_show(bp, 1, buf, 0, 1); 3023 } 3024 3025 static ssize_t 3026 sma2_show(struct device *dev, struct device_attribute *attr, char *buf) 3027 { 3028 struct ptp_ocp *bp = dev_get_drvdata(dev); 3029 3030 return ptp_ocp_sma_show(bp, 2, buf, -1, 1); 3031 } 3032 3033 static ssize_t 3034 sma3_show(struct device *dev, struct device_attribute *attr, char *buf) 3035 { 3036 struct ptp_ocp *bp = dev_get_drvdata(dev); 3037 3038 return ptp_ocp_sma_show(bp, 3, buf, -1, 0); 3039 } 3040 3041 static ssize_t 3042 sma4_show(struct device *dev, struct device_attribute *attr, char *buf) 3043 { 3044 struct ptp_ocp *bp = dev_get_drvdata(dev); 3045 3046 return ptp_ocp_sma_show(bp, 4, buf, -1, 1); 3047 } 3048 3049 static int 3050 ptp_ocp_sma_store_val(struct ptp_ocp *bp, int val, enum ptp_ocp_sma_mode mode, int sma_nr) 3051 { 3052 struct ptp_ocp_sma_connector *sma = &bp->sma[sma_nr - 1]; 3053 3054 if (sma->fixed_dir && (mode != sma->mode || val & SMA_DISABLE)) 3055 return -EOPNOTSUPP; 3056 3057 if (sma->fixed_fcn) { 3058 if (val != sma->default_fcn) 3059 return -EOPNOTSUPP; 3060 return 0; 3061 } 3062 3063 sma->disabled = !!(val & SMA_DISABLE); 3064 3065 if (mode != sma->mode) { 3066 if (mode == SMA_MODE_IN) 3067 ptp_ocp_sma_set_output(bp, sma_nr, 0); 3068 else 3069 ptp_ocp_sma_set_inputs(bp, sma_nr, 0); 3070 sma->mode = mode; 3071 } 3072 3073 if (!sma->fixed_dir) 3074 val |= SMA_ENABLE; /* add enable bit */ 3075 3076 if (sma->disabled) 3077 val = 0; 3078 3079 if (mode == SMA_MODE_IN) 3080 val = ptp_ocp_sma_set_inputs(bp, sma_nr, val); 3081 else 3082 val = ptp_ocp_sma_set_output(bp, sma_nr, val); 3083 3084 return val; 3085 } 3086 3087 static int 3088 ptp_ocp_sma_store(struct ptp_ocp *bp, const char *buf, int sma_nr) 3089 { 3090 struct ptp_ocp_sma_connector *sma = &bp->sma[sma_nr - 1]; 3091 enum ptp_ocp_sma_mode mode; 3092 int val; 3093 3094 mode = sma->mode; 3095 val = sma_parse_inputs(bp->sma_op->tbl, buf, &mode); 3096 if (val < 0) 3097 return val; 3098 return ptp_ocp_sma_store_val(bp, val, mode, sma_nr); 3099 } 3100 3101 static ssize_t 3102 sma1_store(struct device *dev, struct device_attribute *attr, 3103 const char *buf, size_t count) 3104 { 3105 struct ptp_ocp *bp = dev_get_drvdata(dev); 3106 int err; 3107 3108 err = ptp_ocp_sma_store(bp, buf, 1); 3109 return err ? err : count; 3110 } 3111 3112 static ssize_t 3113 sma2_store(struct device *dev, struct device_attribute *attr, 3114 const char *buf, size_t count) 3115 { 3116 struct ptp_ocp *bp = dev_get_drvdata(dev); 3117 int err; 3118 3119 err = ptp_ocp_sma_store(bp, buf, 2); 3120 return err ? err : count; 3121 } 3122 3123 static ssize_t 3124 sma3_store(struct device *dev, struct device_attribute *attr, 3125 const char *buf, size_t count) 3126 { 3127 struct ptp_ocp *bp = dev_get_drvdata(dev); 3128 int err; 3129 3130 err = ptp_ocp_sma_store(bp, buf, 3); 3131 return err ? err : count; 3132 } 3133 3134 static ssize_t 3135 sma4_store(struct device *dev, struct device_attribute *attr, 3136 const char *buf, size_t count) 3137 { 3138 struct ptp_ocp *bp = dev_get_drvdata(dev); 3139 int err; 3140 3141 err = ptp_ocp_sma_store(bp, buf, 4); 3142 return err ? err : count; 3143 } 3144 static DEVICE_ATTR_RW(sma1); 3145 static DEVICE_ATTR_RW(sma2); 3146 static DEVICE_ATTR_RW(sma3); 3147 static DEVICE_ATTR_RW(sma4); 3148 3149 static ssize_t 3150 available_sma_inputs_show(struct device *dev, 3151 struct device_attribute *attr, char *buf) 3152 { 3153 struct ptp_ocp *bp = dev_get_drvdata(dev); 3154 3155 return ptp_ocp_select_table_show(bp->sma_op->tbl[0], buf); 3156 } 3157 static DEVICE_ATTR_RO(available_sma_inputs); 3158 3159 static ssize_t 3160 available_sma_outputs_show(struct device *dev, 3161 struct device_attribute *attr, char *buf) 3162 { 3163 struct ptp_ocp *bp = dev_get_drvdata(dev); 3164 3165 return ptp_ocp_select_table_show(bp->sma_op->tbl[1], buf); 3166 } 3167 static DEVICE_ATTR_RO(available_sma_outputs); 3168 3169 #define EXT_ATTR_RO(_group, _name, _val) \ 3170 struct dev_ext_attribute dev_attr_##_group##_val##_##_name = \ 3171 { __ATTR_RO(_name), (void *)_val } 3172 #define EXT_ATTR_RW(_group, _name, _val) \ 3173 struct dev_ext_attribute dev_attr_##_group##_val##_##_name = \ 3174 { __ATTR_RW(_name), (void *)_val } 3175 #define to_ext_attr(x) container_of(x, struct dev_ext_attribute, attr) 3176 3177 /* period [duty [phase [polarity]]] */ 3178 static ssize_t 3179 signal_store(struct device *dev, struct device_attribute *attr, 3180 const char *buf, size_t count) 3181 { 3182 struct dev_ext_attribute *ea = to_ext_attr(attr); 3183 struct ptp_ocp *bp = dev_get_drvdata(dev); 3184 struct ptp_ocp_signal s = { }; 3185 int gen = (uintptr_t)ea->var; 3186 int argc, err; 3187 char **argv; 3188 3189 argv = argv_split(GFP_KERNEL, buf, &argc); 3190 if (!argv) 3191 return -ENOMEM; 3192 3193 err = -EINVAL; 3194 s.duty = bp->signal[gen].duty; 3195 s.phase = bp->signal[gen].phase; 3196 s.period = bp->signal[gen].period; 3197 s.polarity = bp->signal[gen].polarity; 3198 3199 switch (argc) { 3200 case 4: 3201 argc--; 3202 err = kstrtobool(argv[argc], &s.polarity); 3203 if (err) 3204 goto out; 3205 fallthrough; 3206 case 3: 3207 argc--; 3208 err = kstrtou64(argv[argc], 0, &s.phase); 3209 if (err) 3210 goto out; 3211 fallthrough; 3212 case 2: 3213 argc--; 3214 err = kstrtoint(argv[argc], 0, &s.duty); 3215 if (err) 3216 goto out; 3217 fallthrough; 3218 case 1: 3219 argc--; 3220 err = kstrtou64(argv[argc], 0, &s.period); 3221 if (err) 3222 goto out; 3223 break; 3224 default: 3225 goto out; 3226 } 3227 3228 err = ptp_ocp_signal_set(bp, gen, &s); 3229 if (err) 3230 goto out; 3231 3232 err = ptp_ocp_signal_enable(bp->signal_out[gen], gen, s.period != 0); 3233 3234 out: 3235 argv_free(argv); 3236 return err ? err : count; 3237 } 3238 3239 static ssize_t 3240 signal_show(struct device *dev, struct device_attribute *attr, char *buf) 3241 { 3242 struct dev_ext_attribute *ea = to_ext_attr(attr); 3243 struct ptp_ocp *bp = dev_get_drvdata(dev); 3244 struct ptp_ocp_signal *signal; 3245 struct timespec64 ts; 3246 ssize_t count; 3247 int i; 3248 3249 i = (uintptr_t)ea->var; 3250 signal = &bp->signal[i]; 3251 3252 count = sysfs_emit(buf, "%llu %d %llu %d", signal->period, 3253 signal->duty, signal->phase, signal->polarity); 3254 3255 ts = ktime_to_timespec64(signal->start); 3256 count += sysfs_emit_at(buf, count, " %ptT TAI\n", &ts); 3257 3258 return count; 3259 } 3260 static EXT_ATTR_RW(signal, signal, 0); 3261 static EXT_ATTR_RW(signal, signal, 1); 3262 static EXT_ATTR_RW(signal, signal, 2); 3263 static EXT_ATTR_RW(signal, signal, 3); 3264 3265 static ssize_t 3266 duty_show(struct device *dev, struct device_attribute *attr, char *buf) 3267 { 3268 struct dev_ext_attribute *ea = to_ext_attr(attr); 3269 struct ptp_ocp *bp = dev_get_drvdata(dev); 3270 int i = (uintptr_t)ea->var; 3271 3272 return sysfs_emit(buf, "%d\n", bp->signal[i].duty); 3273 } 3274 static EXT_ATTR_RO(signal, duty, 0); 3275 static EXT_ATTR_RO(signal, duty, 1); 3276 static EXT_ATTR_RO(signal, duty, 2); 3277 static EXT_ATTR_RO(signal, duty, 3); 3278 3279 static ssize_t 3280 period_show(struct device *dev, struct device_attribute *attr, char *buf) 3281 { 3282 struct dev_ext_attribute *ea = to_ext_attr(attr); 3283 struct ptp_ocp *bp = dev_get_drvdata(dev); 3284 int i = (uintptr_t)ea->var; 3285 3286 return sysfs_emit(buf, "%llu\n", bp->signal[i].period); 3287 } 3288 static EXT_ATTR_RO(signal, period, 0); 3289 static EXT_ATTR_RO(signal, period, 1); 3290 static EXT_ATTR_RO(signal, period, 2); 3291 static EXT_ATTR_RO(signal, period, 3); 3292 3293 static ssize_t 3294 phase_show(struct device *dev, struct device_attribute *attr, char *buf) 3295 { 3296 struct dev_ext_attribute *ea = to_ext_attr(attr); 3297 struct ptp_ocp *bp = dev_get_drvdata(dev); 3298 int i = (uintptr_t)ea->var; 3299 3300 return sysfs_emit(buf, "%llu\n", bp->signal[i].phase); 3301 } 3302 static EXT_ATTR_RO(signal, phase, 0); 3303 static EXT_ATTR_RO(signal, phase, 1); 3304 static EXT_ATTR_RO(signal, phase, 2); 3305 static EXT_ATTR_RO(signal, phase, 3); 3306 3307 static ssize_t 3308 polarity_show(struct device *dev, struct device_attribute *attr, 3309 char *buf) 3310 { 3311 struct dev_ext_attribute *ea = to_ext_attr(attr); 3312 struct ptp_ocp *bp = dev_get_drvdata(dev); 3313 int i = (uintptr_t)ea->var; 3314 3315 return sysfs_emit(buf, "%d\n", bp->signal[i].polarity); 3316 } 3317 static EXT_ATTR_RO(signal, polarity, 0); 3318 static EXT_ATTR_RO(signal, polarity, 1); 3319 static EXT_ATTR_RO(signal, polarity, 2); 3320 static EXT_ATTR_RO(signal, polarity, 3); 3321 3322 static ssize_t 3323 running_show(struct device *dev, struct device_attribute *attr, char *buf) 3324 { 3325 struct dev_ext_attribute *ea = to_ext_attr(attr); 3326 struct ptp_ocp *bp = dev_get_drvdata(dev); 3327 int i = (uintptr_t)ea->var; 3328 3329 return sysfs_emit(buf, "%d\n", bp->signal[i].running); 3330 } 3331 static EXT_ATTR_RO(signal, running, 0); 3332 static EXT_ATTR_RO(signal, running, 1); 3333 static EXT_ATTR_RO(signal, running, 2); 3334 static EXT_ATTR_RO(signal, running, 3); 3335 3336 static ssize_t 3337 start_show(struct device *dev, struct device_attribute *attr, char *buf) 3338 { 3339 struct dev_ext_attribute *ea = to_ext_attr(attr); 3340 struct ptp_ocp *bp = dev_get_drvdata(dev); 3341 int i = (uintptr_t)ea->var; 3342 struct timespec64 ts; 3343 3344 ts = ktime_to_timespec64(bp->signal[i].start); 3345 return sysfs_emit(buf, "%llu.%lu\n", ts.tv_sec, ts.tv_nsec); 3346 } 3347 static EXT_ATTR_RO(signal, start, 0); 3348 static EXT_ATTR_RO(signal, start, 1); 3349 static EXT_ATTR_RO(signal, start, 2); 3350 static EXT_ATTR_RO(signal, start, 3); 3351 3352 static ssize_t 3353 seconds_store(struct device *dev, struct device_attribute *attr, 3354 const char *buf, size_t count) 3355 { 3356 struct dev_ext_attribute *ea = to_ext_attr(attr); 3357 struct ptp_ocp *bp = dev_get_drvdata(dev); 3358 int idx = (uintptr_t)ea->var; 3359 u32 val; 3360 int err; 3361 3362 err = kstrtou32(buf, 0, &val); 3363 if (err) 3364 return err; 3365 if (val > 0xff) 3366 return -EINVAL; 3367 3368 if (val) 3369 val = (val << 8) | 0x1; 3370 3371 iowrite32(val, &bp->freq_in[idx]->ctrl); 3372 3373 return count; 3374 } 3375 3376 static ssize_t 3377 seconds_show(struct device *dev, struct device_attribute *attr, char *buf) 3378 { 3379 struct dev_ext_attribute *ea = to_ext_attr(attr); 3380 struct ptp_ocp *bp = dev_get_drvdata(dev); 3381 int idx = (uintptr_t)ea->var; 3382 u32 val; 3383 3384 val = ioread32(&bp->freq_in[idx]->ctrl); 3385 if (val & 1) 3386 val = (val >> 8) & 0xff; 3387 else 3388 val = 0; 3389 3390 return sysfs_emit(buf, "%u\n", val); 3391 } 3392 static EXT_ATTR_RW(freq, seconds, 0); 3393 static EXT_ATTR_RW(freq, seconds, 1); 3394 static EXT_ATTR_RW(freq, seconds, 2); 3395 static EXT_ATTR_RW(freq, seconds, 3); 3396 3397 static ssize_t 3398 frequency_show(struct device *dev, struct device_attribute *attr, char *buf) 3399 { 3400 struct dev_ext_attribute *ea = to_ext_attr(attr); 3401 struct ptp_ocp *bp = dev_get_drvdata(dev); 3402 int idx = (uintptr_t)ea->var; 3403 u32 val; 3404 3405 val = ioread32(&bp->freq_in[idx]->status); 3406 if (val & FREQ_STATUS_ERROR) 3407 return sysfs_emit(buf, "error\n"); 3408 if (val & FREQ_STATUS_OVERRUN) 3409 return sysfs_emit(buf, "overrun\n"); 3410 if (val & FREQ_STATUS_VALID) 3411 return sysfs_emit(buf, "%lu\n", val & FREQ_STATUS_MASK); 3412 return 0; 3413 } 3414 static EXT_ATTR_RO(freq, frequency, 0); 3415 static EXT_ATTR_RO(freq, frequency, 1); 3416 static EXT_ATTR_RO(freq, frequency, 2); 3417 static EXT_ATTR_RO(freq, frequency, 3); 3418 3419 static ssize_t 3420 ptp_ocp_tty_show(struct device *dev, struct device_attribute *attr, char *buf) 3421 { 3422 struct dev_ext_attribute *ea = to_ext_attr(attr); 3423 struct ptp_ocp *bp = dev_get_drvdata(dev); 3424 3425 return sysfs_emit(buf, "ttyS%d", bp->port[(uintptr_t)ea->var].line); 3426 } 3427 3428 static umode_t 3429 ptp_ocp_timecard_tty_is_visible(struct kobject *kobj, struct attribute *attr, int n) 3430 { 3431 struct ptp_ocp *bp = dev_get_drvdata(kobj_to_dev(kobj)); 3432 struct ptp_ocp_serial_port *port; 3433 struct device_attribute *dattr; 3434 struct dev_ext_attribute *ea; 3435 3436 if (strncmp(attr->name, "tty", 3)) 3437 return attr->mode; 3438 3439 dattr = container_of(attr, struct device_attribute, attr); 3440 ea = container_of(dattr, struct dev_ext_attribute, attr); 3441 port = &bp->port[(uintptr_t)ea->var]; 3442 return port->line == -1 ? 0 : 0444; 3443 } 3444 3445 #define EXT_TTY_ATTR_RO(_name, _val) \ 3446 struct dev_ext_attribute dev_attr_tty##_name = \ 3447 { __ATTR(tty##_name, 0444, ptp_ocp_tty_show, NULL), (void *)_val } 3448 3449 static EXT_TTY_ATTR_RO(GNSS, PORT_GNSS); 3450 static EXT_TTY_ATTR_RO(GNSS2, PORT_GNSS2); 3451 static EXT_TTY_ATTR_RO(MAC, PORT_MAC); 3452 static EXT_TTY_ATTR_RO(NMEA, PORT_NMEA); 3453 static struct attribute *ptp_ocp_timecard_tty_attrs[] = { 3454 &dev_attr_ttyGNSS.attr.attr, 3455 &dev_attr_ttyGNSS2.attr.attr, 3456 &dev_attr_ttyMAC.attr.attr, 3457 &dev_attr_ttyNMEA.attr.attr, 3458 NULL, 3459 }; 3460 3461 static const struct attribute_group ptp_ocp_timecard_tty_group = { 3462 .name = "tty", 3463 .attrs = ptp_ocp_timecard_tty_attrs, 3464 .is_visible = ptp_ocp_timecard_tty_is_visible, 3465 }; 3466 3467 static ssize_t 3468 serialnum_show(struct device *dev, struct device_attribute *attr, char *buf) 3469 { 3470 struct ptp_ocp *bp = dev_get_drvdata(dev); 3471 3472 if (!bp->has_eeprom_data) 3473 ptp_ocp_read_eeprom(bp); 3474 3475 return sysfs_emit(buf, "%pM\n", bp->serial); 3476 } 3477 static DEVICE_ATTR_RO(serialnum); 3478 3479 static ssize_t 3480 gnss_sync_show(struct device *dev, struct device_attribute *attr, char *buf) 3481 { 3482 struct ptp_ocp *bp = dev_get_drvdata(dev); 3483 ssize_t ret; 3484 3485 if (bp->gnss_lost) 3486 ret = sysfs_emit(buf, "LOST @ %ptT\n", &bp->gnss_lost); 3487 else 3488 ret = sysfs_emit(buf, "SYNC\n"); 3489 3490 return ret; 3491 } 3492 static DEVICE_ATTR_RO(gnss_sync); 3493 3494 static ssize_t 3495 utc_tai_offset_show(struct device *dev, 3496 struct device_attribute *attr, char *buf) 3497 { 3498 struct ptp_ocp *bp = dev_get_drvdata(dev); 3499 3500 return sysfs_emit(buf, "%d\n", bp->utc_tai_offset); 3501 } 3502 3503 static ssize_t 3504 utc_tai_offset_store(struct device *dev, 3505 struct device_attribute *attr, 3506 const char *buf, size_t count) 3507 { 3508 struct ptp_ocp *bp = dev_get_drvdata(dev); 3509 int err; 3510 u32 val; 3511 3512 err = kstrtou32(buf, 0, &val); 3513 if (err) 3514 return err; 3515 3516 ptp_ocp_utc_distribute(bp, val); 3517 3518 return count; 3519 } 3520 static DEVICE_ATTR_RW(utc_tai_offset); 3521 3522 static ssize_t 3523 ts_window_adjust_show(struct device *dev, 3524 struct device_attribute *attr, char *buf) 3525 { 3526 struct ptp_ocp *bp = dev_get_drvdata(dev); 3527 3528 return sysfs_emit(buf, "%d\n", bp->ts_window_adjust); 3529 } 3530 3531 static ssize_t 3532 ts_window_adjust_store(struct device *dev, 3533 struct device_attribute *attr, 3534 const char *buf, size_t count) 3535 { 3536 struct ptp_ocp *bp = dev_get_drvdata(dev); 3537 int err; 3538 u32 val; 3539 3540 err = kstrtou32(buf, 0, &val); 3541 if (err) 3542 return err; 3543 3544 bp->ts_window_adjust = val; 3545 3546 return count; 3547 } 3548 static DEVICE_ATTR_RW(ts_window_adjust); 3549 3550 static ssize_t 3551 irig_b_mode_show(struct device *dev, struct device_attribute *attr, char *buf) 3552 { 3553 struct ptp_ocp *bp = dev_get_drvdata(dev); 3554 u32 val; 3555 3556 val = ioread32(&bp->irig_out->ctrl); 3557 val = (val >> 16) & 0x07; 3558 return sysfs_emit(buf, "%d\n", val); 3559 } 3560 3561 static ssize_t 3562 irig_b_mode_store(struct device *dev, 3563 struct device_attribute *attr, 3564 const char *buf, size_t count) 3565 { 3566 struct ptp_ocp *bp = dev_get_drvdata(dev); 3567 unsigned long flags; 3568 int err; 3569 u32 reg; 3570 u8 val; 3571 3572 err = kstrtou8(buf, 0, &val); 3573 if (err) 3574 return err; 3575 if (val > 7) 3576 return -EINVAL; 3577 3578 reg = ((val & 0x7) << 16); 3579 3580 spin_lock_irqsave(&bp->lock, flags); 3581 iowrite32(0, &bp->irig_out->ctrl); /* disable */ 3582 iowrite32(reg, &bp->irig_out->ctrl); /* change mode */ 3583 iowrite32(reg | IRIG_M_CTRL_ENABLE, &bp->irig_out->ctrl); 3584 spin_unlock_irqrestore(&bp->lock, flags); 3585 3586 return count; 3587 } 3588 static DEVICE_ATTR_RW(irig_b_mode); 3589 3590 static ssize_t 3591 clock_source_show(struct device *dev, struct device_attribute *attr, char *buf) 3592 { 3593 struct ptp_ocp *bp = dev_get_drvdata(dev); 3594 const char *p; 3595 u32 select; 3596 3597 select = ioread32(&bp->reg->select); 3598 p = ptp_ocp_select_name_from_val(ptp_ocp_clock, select >> 16); 3599 3600 return sysfs_emit(buf, "%s\n", p); 3601 } 3602 3603 static ssize_t 3604 clock_source_store(struct device *dev, struct device_attribute *attr, 3605 const char *buf, size_t count) 3606 { 3607 struct ptp_ocp *bp = dev_get_drvdata(dev); 3608 unsigned long flags; 3609 int val; 3610 3611 val = ptp_ocp_select_val_from_name(ptp_ocp_clock, buf); 3612 if (val < 0) 3613 return val; 3614 3615 spin_lock_irqsave(&bp->lock, flags); 3616 iowrite32(val, &bp->reg->select); 3617 spin_unlock_irqrestore(&bp->lock, flags); 3618 3619 return count; 3620 } 3621 static DEVICE_ATTR_RW(clock_source); 3622 3623 static ssize_t 3624 available_clock_sources_show(struct device *dev, 3625 struct device_attribute *attr, char *buf) 3626 { 3627 return ptp_ocp_select_table_show(ptp_ocp_clock, buf); 3628 } 3629 static DEVICE_ATTR_RO(available_clock_sources); 3630 3631 static ssize_t 3632 clock_status_drift_show(struct device *dev, 3633 struct device_attribute *attr, char *buf) 3634 { 3635 struct ptp_ocp *bp = dev_get_drvdata(dev); 3636 u32 val; 3637 int res; 3638 3639 val = ioread32(&bp->reg->status_drift); 3640 res = (val & ~INT_MAX) ? -1 : 1; 3641 res *= (val & INT_MAX); 3642 return sysfs_emit(buf, "%d\n", res); 3643 } 3644 static DEVICE_ATTR_RO(clock_status_drift); 3645 3646 static ssize_t 3647 clock_status_offset_show(struct device *dev, 3648 struct device_attribute *attr, char *buf) 3649 { 3650 struct ptp_ocp *bp = dev_get_drvdata(dev); 3651 u32 val; 3652 int res; 3653 3654 val = ioread32(&bp->reg->status_offset); 3655 res = (val & ~INT_MAX) ? -1 : 1; 3656 res *= (val & INT_MAX); 3657 return sysfs_emit(buf, "%d\n", res); 3658 } 3659 static DEVICE_ATTR_RO(clock_status_offset); 3660 3661 static ssize_t 3662 tod_correction_show(struct device *dev, 3663 struct device_attribute *attr, char *buf) 3664 { 3665 struct ptp_ocp *bp = dev_get_drvdata(dev); 3666 u32 val; 3667 int res; 3668 3669 val = ioread32(&bp->tod->adj_sec); 3670 res = (val & ~INT_MAX) ? -1 : 1; 3671 res *= (val & INT_MAX); 3672 return sysfs_emit(buf, "%d\n", res); 3673 } 3674 3675 static ssize_t 3676 tod_correction_store(struct device *dev, struct device_attribute *attr, 3677 const char *buf, size_t count) 3678 { 3679 struct ptp_ocp *bp = dev_get_drvdata(dev); 3680 unsigned long flags; 3681 int err, res; 3682 u32 val = 0; 3683 3684 err = kstrtos32(buf, 0, &res); 3685 if (err) 3686 return err; 3687 if (res < 0) { 3688 res *= -1; 3689 val |= BIT(31); 3690 } 3691 val |= res; 3692 3693 spin_lock_irqsave(&bp->lock, flags); 3694 iowrite32(val, &bp->tod->adj_sec); 3695 spin_unlock_irqrestore(&bp->lock, flags); 3696 3697 return count; 3698 } 3699 static DEVICE_ATTR_RW(tod_correction); 3700 3701 #define _DEVICE_SIGNAL_GROUP_ATTRS(_nr) \ 3702 static struct attribute *fb_timecard_signal##_nr##_attrs[] = { \ 3703 &dev_attr_signal##_nr##_signal.attr.attr, \ 3704 &dev_attr_signal##_nr##_duty.attr.attr, \ 3705 &dev_attr_signal##_nr##_phase.attr.attr, \ 3706 &dev_attr_signal##_nr##_period.attr.attr, \ 3707 &dev_attr_signal##_nr##_polarity.attr.attr, \ 3708 &dev_attr_signal##_nr##_running.attr.attr, \ 3709 &dev_attr_signal##_nr##_start.attr.attr, \ 3710 NULL, \ 3711 } 3712 3713 #define DEVICE_SIGNAL_GROUP(_name, _nr) \ 3714 _DEVICE_SIGNAL_GROUP_ATTRS(_nr); \ 3715 static const struct attribute_group \ 3716 fb_timecard_signal##_nr##_group = { \ 3717 .name = #_name, \ 3718 .attrs = fb_timecard_signal##_nr##_attrs, \ 3719 } 3720 3721 DEVICE_SIGNAL_GROUP(gen1, 0); 3722 DEVICE_SIGNAL_GROUP(gen2, 1); 3723 DEVICE_SIGNAL_GROUP(gen3, 2); 3724 DEVICE_SIGNAL_GROUP(gen4, 3); 3725 3726 #define _DEVICE_FREQ_GROUP_ATTRS(_nr) \ 3727 static struct attribute *fb_timecard_freq##_nr##_attrs[] = { \ 3728 &dev_attr_freq##_nr##_seconds.attr.attr, \ 3729 &dev_attr_freq##_nr##_frequency.attr.attr, \ 3730 NULL, \ 3731 } 3732 3733 #define DEVICE_FREQ_GROUP(_name, _nr) \ 3734 _DEVICE_FREQ_GROUP_ATTRS(_nr); \ 3735 static const struct attribute_group \ 3736 fb_timecard_freq##_nr##_group = { \ 3737 .name = #_name, \ 3738 .attrs = fb_timecard_freq##_nr##_attrs, \ 3739 } 3740 3741 DEVICE_FREQ_GROUP(freq1, 0); 3742 DEVICE_FREQ_GROUP(freq2, 1); 3743 DEVICE_FREQ_GROUP(freq3, 2); 3744 DEVICE_FREQ_GROUP(freq4, 3); 3745 3746 static ssize_t 3747 disciplining_config_read(struct file *filp, struct kobject *kobj, 3748 const struct bin_attribute *bin_attr, char *buf, 3749 loff_t off, size_t count) 3750 { 3751 struct ptp_ocp *bp = dev_get_drvdata(kobj_to_dev(kobj)); 3752 size_t size = OCP_ART_CONFIG_SIZE; 3753 struct nvmem_device *nvmem; 3754 ssize_t err; 3755 3756 nvmem = ptp_ocp_nvmem_device_get(bp, NULL); 3757 if (IS_ERR(nvmem)) 3758 return PTR_ERR(nvmem); 3759 3760 if (off > size) { 3761 err = 0; 3762 goto out; 3763 } 3764 3765 if (off + count > size) 3766 count = size - off; 3767 3768 // the configuration is in the very beginning of the EEPROM 3769 err = nvmem_device_read(nvmem, off, count, buf); 3770 if (err != count) { 3771 err = -EFAULT; 3772 goto out; 3773 } 3774 3775 out: 3776 ptp_ocp_nvmem_device_put(&nvmem); 3777 3778 return err; 3779 } 3780 3781 static ssize_t 3782 disciplining_config_write(struct file *filp, struct kobject *kobj, 3783 const struct bin_attribute *bin_attr, char *buf, 3784 loff_t off, size_t count) 3785 { 3786 struct ptp_ocp *bp = dev_get_drvdata(kobj_to_dev(kobj)); 3787 struct nvmem_device *nvmem; 3788 ssize_t err; 3789 3790 /* Allow write of the whole area only */ 3791 if (off || count != OCP_ART_CONFIG_SIZE) 3792 return -EFAULT; 3793 3794 nvmem = ptp_ocp_nvmem_device_get(bp, NULL); 3795 if (IS_ERR(nvmem)) 3796 return PTR_ERR(nvmem); 3797 3798 err = nvmem_device_write(nvmem, 0x00, count, buf); 3799 if (err != count) 3800 err = -EFAULT; 3801 3802 ptp_ocp_nvmem_device_put(&nvmem); 3803 3804 return err; 3805 } 3806 static const BIN_ATTR_RW(disciplining_config, OCP_ART_CONFIG_SIZE); 3807 3808 static ssize_t 3809 temperature_table_read(struct file *filp, struct kobject *kobj, 3810 const struct bin_attribute *bin_attr, char *buf, 3811 loff_t off, size_t count) 3812 { 3813 struct ptp_ocp *bp = dev_get_drvdata(kobj_to_dev(kobj)); 3814 size_t size = OCP_ART_TEMP_TABLE_SIZE; 3815 struct nvmem_device *nvmem; 3816 ssize_t err; 3817 3818 nvmem = ptp_ocp_nvmem_device_get(bp, NULL); 3819 if (IS_ERR(nvmem)) 3820 return PTR_ERR(nvmem); 3821 3822 if (off > size) { 3823 err = 0; 3824 goto out; 3825 } 3826 3827 if (off + count > size) 3828 count = size - off; 3829 3830 // the configuration is in the very beginning of the EEPROM 3831 err = nvmem_device_read(nvmem, 0x90 + off, count, buf); 3832 if (err != count) { 3833 err = -EFAULT; 3834 goto out; 3835 } 3836 3837 out: 3838 ptp_ocp_nvmem_device_put(&nvmem); 3839 3840 return err; 3841 } 3842 3843 static ssize_t 3844 temperature_table_write(struct file *filp, struct kobject *kobj, 3845 const struct bin_attribute *bin_attr, char *buf, 3846 loff_t off, size_t count) 3847 { 3848 struct ptp_ocp *bp = dev_get_drvdata(kobj_to_dev(kobj)); 3849 struct nvmem_device *nvmem; 3850 ssize_t err; 3851 3852 /* Allow write of the whole area only */ 3853 if (off || count != OCP_ART_TEMP_TABLE_SIZE) 3854 return -EFAULT; 3855 3856 nvmem = ptp_ocp_nvmem_device_get(bp, NULL); 3857 if (IS_ERR(nvmem)) 3858 return PTR_ERR(nvmem); 3859 3860 err = nvmem_device_write(nvmem, 0x90, count, buf); 3861 if (err != count) 3862 err = -EFAULT; 3863 3864 ptp_ocp_nvmem_device_put(&nvmem); 3865 3866 return err; 3867 } 3868 static const BIN_ATTR_RW(temperature_table, OCP_ART_TEMP_TABLE_SIZE); 3869 3870 static struct attribute *fb_timecard_attrs[] = { 3871 &dev_attr_serialnum.attr, 3872 &dev_attr_gnss_sync.attr, 3873 &dev_attr_clock_source.attr, 3874 &dev_attr_available_clock_sources.attr, 3875 &dev_attr_sma1.attr, 3876 &dev_attr_sma2.attr, 3877 &dev_attr_sma3.attr, 3878 &dev_attr_sma4.attr, 3879 &dev_attr_available_sma_inputs.attr, 3880 &dev_attr_available_sma_outputs.attr, 3881 &dev_attr_clock_status_drift.attr, 3882 &dev_attr_clock_status_offset.attr, 3883 &dev_attr_irig_b_mode.attr, 3884 &dev_attr_utc_tai_offset.attr, 3885 &dev_attr_ts_window_adjust.attr, 3886 &dev_attr_tod_correction.attr, 3887 NULL, 3888 }; 3889 3890 static const struct attribute_group fb_timecard_group = { 3891 .attrs = fb_timecard_attrs, 3892 }; 3893 3894 static const struct ocp_attr_group fb_timecard_groups[] = { 3895 { .cap = OCP_CAP_BASIC, .group = &fb_timecard_group }, 3896 { .cap = OCP_CAP_BASIC, .group = &ptp_ocp_timecard_tty_group }, 3897 { .cap = OCP_CAP_SIGNAL, .group = &fb_timecard_signal0_group }, 3898 { .cap = OCP_CAP_SIGNAL, .group = &fb_timecard_signal1_group }, 3899 { .cap = OCP_CAP_SIGNAL, .group = &fb_timecard_signal2_group }, 3900 { .cap = OCP_CAP_SIGNAL, .group = &fb_timecard_signal3_group }, 3901 { .cap = OCP_CAP_FREQ, .group = &fb_timecard_freq0_group }, 3902 { .cap = OCP_CAP_FREQ, .group = &fb_timecard_freq1_group }, 3903 { .cap = OCP_CAP_FREQ, .group = &fb_timecard_freq2_group }, 3904 { .cap = OCP_CAP_FREQ, .group = &fb_timecard_freq3_group }, 3905 { }, 3906 }; 3907 3908 static struct attribute *art_timecard_attrs[] = { 3909 &dev_attr_serialnum.attr, 3910 &dev_attr_clock_source.attr, 3911 &dev_attr_available_clock_sources.attr, 3912 &dev_attr_utc_tai_offset.attr, 3913 &dev_attr_ts_window_adjust.attr, 3914 &dev_attr_sma1.attr, 3915 &dev_attr_sma2.attr, 3916 &dev_attr_sma3.attr, 3917 &dev_attr_sma4.attr, 3918 &dev_attr_available_sma_inputs.attr, 3919 &dev_attr_available_sma_outputs.attr, 3920 NULL, 3921 }; 3922 3923 static const struct bin_attribute *const bin_art_timecard_attrs[] = { 3924 &bin_attr_disciplining_config, 3925 &bin_attr_temperature_table, 3926 NULL, 3927 }; 3928 3929 static const struct attribute_group art_timecard_group = { 3930 .attrs = art_timecard_attrs, 3931 .bin_attrs_new = bin_art_timecard_attrs, 3932 }; 3933 3934 static const struct ocp_attr_group art_timecard_groups[] = { 3935 { .cap = OCP_CAP_BASIC, .group = &art_timecard_group }, 3936 { .cap = OCP_CAP_BASIC, .group = &ptp_ocp_timecard_tty_group }, 3937 { }, 3938 }; 3939 3940 static struct attribute *adva_timecard_attrs[] = { 3941 &dev_attr_serialnum.attr, 3942 &dev_attr_gnss_sync.attr, 3943 &dev_attr_clock_source.attr, 3944 &dev_attr_available_clock_sources.attr, 3945 &dev_attr_sma1.attr, 3946 &dev_attr_sma2.attr, 3947 &dev_attr_sma3.attr, 3948 &dev_attr_sma4.attr, 3949 &dev_attr_available_sma_inputs.attr, 3950 &dev_attr_available_sma_outputs.attr, 3951 &dev_attr_clock_status_drift.attr, 3952 &dev_attr_clock_status_offset.attr, 3953 &dev_attr_ts_window_adjust.attr, 3954 &dev_attr_tod_correction.attr, 3955 NULL, 3956 }; 3957 3958 static const struct attribute_group adva_timecard_group = { 3959 .attrs = adva_timecard_attrs, 3960 }; 3961 3962 static const struct ocp_attr_group adva_timecard_groups[] = { 3963 { .cap = OCP_CAP_BASIC, .group = &adva_timecard_group }, 3964 { .cap = OCP_CAP_BASIC, .group = &ptp_ocp_timecard_tty_group }, 3965 { .cap = OCP_CAP_SIGNAL, .group = &fb_timecard_signal0_group }, 3966 { .cap = OCP_CAP_SIGNAL, .group = &fb_timecard_signal1_group }, 3967 { .cap = OCP_CAP_FREQ, .group = &fb_timecard_freq0_group }, 3968 { .cap = OCP_CAP_FREQ, .group = &fb_timecard_freq1_group }, 3969 { }, 3970 }; 3971 3972 static void 3973 gpio_input_map(char *buf, struct ptp_ocp *bp, u16 map[][2], u16 bit, 3974 const char *def) 3975 { 3976 int i; 3977 3978 for (i = 0; i < 4; i++) { 3979 if (bp->sma[i].mode != SMA_MODE_IN) 3980 continue; 3981 if (map[i][0] & (1 << bit)) { 3982 sprintf(buf, "sma%d", i + 1); 3983 return; 3984 } 3985 } 3986 if (!def) 3987 def = "----"; 3988 strcpy(buf, def); 3989 } 3990 3991 static void 3992 gpio_output_map(char *buf, struct ptp_ocp *bp, u16 map[][2], u16 bit) 3993 { 3994 char *ans = buf; 3995 int i; 3996 3997 strcpy(ans, "----"); 3998 for (i = 0; i < 4; i++) { 3999 if (bp->sma[i].mode != SMA_MODE_OUT) 4000 continue; 4001 if (map[i][1] & (1 << bit)) 4002 ans += sprintf(ans, "sma%d ", i + 1); 4003 } 4004 } 4005 4006 static void 4007 _signal_summary_show(struct seq_file *s, struct ptp_ocp *bp, int nr) 4008 { 4009 struct signal_reg __iomem *reg = bp->signal_out[nr]->mem; 4010 struct ptp_ocp_signal *signal = &bp->signal[nr]; 4011 char label[8]; 4012 bool on; 4013 u32 val; 4014 4015 on = signal->running; 4016 sprintf(label, "GEN%d", nr + 1); 4017 seq_printf(s, "%7s: %s, period:%llu duty:%d%% phase:%llu pol:%d", 4018 label, on ? " ON" : "OFF", 4019 signal->period, signal->duty, signal->phase, 4020 signal->polarity); 4021 4022 val = ioread32(®->enable); 4023 seq_printf(s, " [%x", val); 4024 val = ioread32(®->status); 4025 seq_printf(s, " %x]", val); 4026 4027 seq_printf(s, " start:%llu\n", signal->start); 4028 } 4029 4030 static void 4031 _frequency_summary_show(struct seq_file *s, int nr, 4032 struct frequency_reg __iomem *reg) 4033 { 4034 char label[8]; 4035 bool on; 4036 u32 val; 4037 4038 if (!reg) 4039 return; 4040 4041 sprintf(label, "FREQ%d", nr + 1); 4042 val = ioread32(®->ctrl); 4043 on = val & 1; 4044 val = (val >> 8) & 0xff; 4045 seq_printf(s, "%7s: %s, sec:%u", 4046 label, 4047 on ? " ON" : "OFF", 4048 val); 4049 4050 val = ioread32(®->status); 4051 if (val & FREQ_STATUS_ERROR) 4052 seq_printf(s, ", error"); 4053 if (val & FREQ_STATUS_OVERRUN) 4054 seq_printf(s, ", overrun"); 4055 if (val & FREQ_STATUS_VALID) 4056 seq_printf(s, ", freq %lu Hz", val & FREQ_STATUS_MASK); 4057 seq_printf(s, " reg:%x\n", val); 4058 } 4059 4060 static int 4061 ptp_ocp_summary_show(struct seq_file *s, void *data) 4062 { 4063 struct device *dev = s->private; 4064 struct ptp_system_timestamp sts; 4065 struct ts_reg __iomem *ts_reg; 4066 char *buf, *src, *mac_src; 4067 struct timespec64 ts; 4068 struct ptp_ocp *bp; 4069 u16 sma_val[4][2]; 4070 u32 ctrl, val; 4071 bool on, map; 4072 int i; 4073 4074 buf = (char *)__get_free_page(GFP_KERNEL); 4075 if (!buf) 4076 return -ENOMEM; 4077 4078 bp = dev_get_drvdata(dev); 4079 4080 seq_printf(s, "%7s: /dev/ptp%d\n", "PTP", ptp_clock_index(bp->ptp)); 4081 for (i = 0; i < __PORT_COUNT; i++) { 4082 if (bp->port[i].line != -1) 4083 seq_printf(s, "%7s: /dev/ttyS%d\n", ptp_ocp_tty_port_name(i), 4084 bp->port[i].line); 4085 } 4086 4087 memset(sma_val, 0xff, sizeof(sma_val)); 4088 if (bp->sma_map1) { 4089 u32 reg; 4090 4091 reg = ioread32(&bp->sma_map1->gpio1); 4092 sma_val[0][0] = reg & 0xffff; 4093 sma_val[1][0] = reg >> 16; 4094 4095 reg = ioread32(&bp->sma_map1->gpio2); 4096 sma_val[2][1] = reg & 0xffff; 4097 sma_val[3][1] = reg >> 16; 4098 4099 reg = ioread32(&bp->sma_map2->gpio1); 4100 sma_val[2][0] = reg & 0xffff; 4101 sma_val[3][0] = reg >> 16; 4102 4103 reg = ioread32(&bp->sma_map2->gpio2); 4104 sma_val[0][1] = reg & 0xffff; 4105 sma_val[1][1] = reg >> 16; 4106 } 4107 4108 sma1_show(dev, NULL, buf); 4109 seq_printf(s, " sma1: %04x,%04x %s", 4110 sma_val[0][0], sma_val[0][1], buf); 4111 4112 sma2_show(dev, NULL, buf); 4113 seq_printf(s, " sma2: %04x,%04x %s", 4114 sma_val[1][0], sma_val[1][1], buf); 4115 4116 sma3_show(dev, NULL, buf); 4117 seq_printf(s, " sma3: %04x,%04x %s", 4118 sma_val[2][0], sma_val[2][1], buf); 4119 4120 sma4_show(dev, NULL, buf); 4121 seq_printf(s, " sma4: %04x,%04x %s", 4122 sma_val[3][0], sma_val[3][1], buf); 4123 4124 if (bp->ts0) { 4125 ts_reg = bp->ts0->mem; 4126 on = ioread32(&ts_reg->enable); 4127 src = "GNSS1"; 4128 seq_printf(s, "%7s: %s, src: %s\n", "TS0", 4129 on ? " ON" : "OFF", src); 4130 } 4131 4132 if (bp->ts1) { 4133 ts_reg = bp->ts1->mem; 4134 on = ioread32(&ts_reg->enable); 4135 gpio_input_map(buf, bp, sma_val, 2, NULL); 4136 seq_printf(s, "%7s: %s, src: %s\n", "TS1", 4137 on ? " ON" : "OFF", buf); 4138 } 4139 4140 if (bp->ts2) { 4141 ts_reg = bp->ts2->mem; 4142 on = ioread32(&ts_reg->enable); 4143 gpio_input_map(buf, bp, sma_val, 3, NULL); 4144 seq_printf(s, "%7s: %s, src: %s\n", "TS2", 4145 on ? " ON" : "OFF", buf); 4146 } 4147 4148 if (bp->ts3) { 4149 ts_reg = bp->ts3->mem; 4150 on = ioread32(&ts_reg->enable); 4151 gpio_input_map(buf, bp, sma_val, 6, NULL); 4152 seq_printf(s, "%7s: %s, src: %s\n", "TS3", 4153 on ? " ON" : "OFF", buf); 4154 } 4155 4156 if (bp->ts4) { 4157 ts_reg = bp->ts4->mem; 4158 on = ioread32(&ts_reg->enable); 4159 gpio_input_map(buf, bp, sma_val, 7, NULL); 4160 seq_printf(s, "%7s: %s, src: %s\n", "TS4", 4161 on ? " ON" : "OFF", buf); 4162 } 4163 4164 if (bp->pps) { 4165 ts_reg = bp->pps->mem; 4166 src = "PHC"; 4167 on = ioread32(&ts_reg->enable); 4168 map = !!(bp->pps_req_map & OCP_REQ_TIMESTAMP); 4169 seq_printf(s, "%7s: %s, src: %s\n", "TS5", 4170 on && map ? " ON" : "OFF", src); 4171 4172 map = !!(bp->pps_req_map & OCP_REQ_PPS); 4173 seq_printf(s, "%7s: %s, src: %s\n", "PPS", 4174 on && map ? " ON" : "OFF", src); 4175 } 4176 4177 if (bp->fw_cap & OCP_CAP_SIGNAL) 4178 for (i = 0; i < 4; i++) 4179 _signal_summary_show(s, bp, i); 4180 4181 if (bp->fw_cap & OCP_CAP_FREQ) 4182 for (i = 0; i < 4; i++) 4183 _frequency_summary_show(s, i, bp->freq_in[i]); 4184 4185 if (bp->irig_out) { 4186 ctrl = ioread32(&bp->irig_out->ctrl); 4187 on = ctrl & IRIG_M_CTRL_ENABLE; 4188 val = ioread32(&bp->irig_out->status); 4189 gpio_output_map(buf, bp, sma_val, 4); 4190 seq_printf(s, "%7s: %s, error: %d, mode %d, out: %s\n", "IRIG", 4191 on ? " ON" : "OFF", val, (ctrl >> 16), buf); 4192 } 4193 4194 if (bp->irig_in) { 4195 on = ioread32(&bp->irig_in->ctrl) & IRIG_S_CTRL_ENABLE; 4196 val = ioread32(&bp->irig_in->status); 4197 gpio_input_map(buf, bp, sma_val, 4, NULL); 4198 seq_printf(s, "%7s: %s, error: %d, src: %s\n", "IRIG in", 4199 on ? " ON" : "OFF", val, buf); 4200 } 4201 4202 if (bp->dcf_out) { 4203 on = ioread32(&bp->dcf_out->ctrl) & DCF_M_CTRL_ENABLE; 4204 val = ioread32(&bp->dcf_out->status); 4205 gpio_output_map(buf, bp, sma_val, 5); 4206 seq_printf(s, "%7s: %s, error: %d, out: %s\n", "DCF", 4207 on ? " ON" : "OFF", val, buf); 4208 } 4209 4210 if (bp->dcf_in) { 4211 on = ioread32(&bp->dcf_in->ctrl) & DCF_S_CTRL_ENABLE; 4212 val = ioread32(&bp->dcf_in->status); 4213 gpio_input_map(buf, bp, sma_val, 5, NULL); 4214 seq_printf(s, "%7s: %s, error: %d, src: %s\n", "DCF in", 4215 on ? " ON" : "OFF", val, buf); 4216 } 4217 4218 if (bp->nmea_out) { 4219 on = ioread32(&bp->nmea_out->ctrl) & 1; 4220 val = ioread32(&bp->nmea_out->status); 4221 seq_printf(s, "%7s: %s, error: %d\n", "NMEA", 4222 on ? " ON" : "OFF", val); 4223 } 4224 4225 /* compute src for PPS1, used below. */ 4226 if (bp->pps_select) { 4227 val = ioread32(&bp->pps_select->gpio1); 4228 src = &buf[80]; 4229 mac_src = "GNSS1"; 4230 if (val & 0x01) { 4231 gpio_input_map(src, bp, sma_val, 0, NULL); 4232 mac_src = src; 4233 } else if (val & 0x02) { 4234 src = "MAC"; 4235 } else if (val & 0x04) { 4236 src = "GNSS1"; 4237 } else { 4238 src = "----"; 4239 mac_src = src; 4240 } 4241 } else { 4242 src = "?"; 4243 mac_src = src; 4244 } 4245 seq_printf(s, "MAC PPS1 src: %s\n", mac_src); 4246 4247 gpio_input_map(buf, bp, sma_val, 1, "GNSS2"); 4248 seq_printf(s, "MAC PPS2 src: %s\n", buf); 4249 4250 /* assumes automatic switchover/selection */ 4251 val = ioread32(&bp->reg->select); 4252 switch (val >> 16) { 4253 case 0: 4254 sprintf(buf, "----"); 4255 break; 4256 case 2: 4257 sprintf(buf, "IRIG"); 4258 break; 4259 case 3: 4260 sprintf(buf, "%s via PPS1", src); 4261 break; 4262 case 6: 4263 sprintf(buf, "DCF"); 4264 break; 4265 default: 4266 strcpy(buf, "unknown"); 4267 break; 4268 } 4269 seq_printf(s, "%7s: %s, state: %s\n", "PHC src", buf, 4270 bp->sync ? "sync" : "unsynced"); 4271 4272 if (!ptp_ocp_gettimex(&bp->ptp_info, &ts, &sts)) { 4273 struct timespec64 sys_ts; 4274 s64 pre_ns, post_ns, ns; 4275 4276 pre_ns = timespec64_to_ns(&sts.pre_ts); 4277 post_ns = timespec64_to_ns(&sts.post_ts); 4278 ns = (pre_ns + post_ns) / 2; 4279 ns += (s64)bp->utc_tai_offset * NSEC_PER_SEC; 4280 sys_ts = ns_to_timespec64(ns); 4281 4282 seq_printf(s, "%7s: %lld.%ld == %ptT TAI\n", "PHC", 4283 ts.tv_sec, ts.tv_nsec, &ts); 4284 seq_printf(s, "%7s: %lld.%ld == %ptT UTC offset %d\n", "SYS", 4285 sys_ts.tv_sec, sys_ts.tv_nsec, &sys_ts, 4286 bp->utc_tai_offset); 4287 seq_printf(s, "%7s: PHC:SYS offset: %lld window: %lld\n", "", 4288 timespec64_to_ns(&ts) - ns, 4289 post_ns - pre_ns); 4290 } 4291 4292 free_page((unsigned long)buf); 4293 return 0; 4294 } 4295 DEFINE_SHOW_ATTRIBUTE(ptp_ocp_summary); 4296 4297 static int 4298 ptp_ocp_tod_status_show(struct seq_file *s, void *data) 4299 { 4300 struct device *dev = s->private; 4301 struct ptp_ocp *bp; 4302 u32 val; 4303 int idx; 4304 4305 bp = dev_get_drvdata(dev); 4306 4307 val = ioread32(&bp->tod->ctrl); 4308 if (!(val & TOD_CTRL_ENABLE)) { 4309 seq_printf(s, "TOD Slave disabled\n"); 4310 return 0; 4311 } 4312 seq_printf(s, "TOD Slave enabled, Control Register 0x%08X\n", val); 4313 4314 idx = val & TOD_CTRL_PROTOCOL ? 4 : 0; 4315 idx += (val >> 16) & 3; 4316 seq_printf(s, "Protocol %s\n", ptp_ocp_tod_proto_name(idx)); 4317 4318 idx = (val >> TOD_CTRL_GNSS_SHIFT) & TOD_CTRL_GNSS_MASK; 4319 seq_printf(s, "GNSS %s\n", ptp_ocp_tod_gnss_name(idx)); 4320 4321 val = ioread32(&bp->tod->version); 4322 seq_printf(s, "TOD Version %d.%d.%d\n", 4323 val >> 24, (val >> 16) & 0xff, val & 0xffff); 4324 4325 val = ioread32(&bp->tod->status); 4326 seq_printf(s, "Status register: 0x%08X\n", val); 4327 4328 val = ioread32(&bp->tod->adj_sec); 4329 idx = (val & ~INT_MAX) ? -1 : 1; 4330 idx *= (val & INT_MAX); 4331 seq_printf(s, "Correction seconds: %d\n", idx); 4332 4333 val = ioread32(&bp->tod->utc_status); 4334 seq_printf(s, "UTC status register: 0x%08X\n", val); 4335 seq_printf(s, "UTC offset: %ld valid:%d\n", 4336 val & TOD_STATUS_UTC_MASK, val & TOD_STATUS_UTC_VALID ? 1 : 0); 4337 seq_printf(s, "Leap second info valid:%d, Leap second announce %d\n", 4338 val & TOD_STATUS_LEAP_VALID ? 1 : 0, 4339 val & TOD_STATUS_LEAP_ANNOUNCE ? 1 : 0); 4340 4341 val = ioread32(&bp->tod->leap); 4342 seq_printf(s, "Time to next leap second (in sec): %d\n", (s32) val); 4343 4344 return 0; 4345 } 4346 DEFINE_SHOW_ATTRIBUTE(ptp_ocp_tod_status); 4347 4348 static struct dentry *ptp_ocp_debugfs_root; 4349 4350 static void 4351 ptp_ocp_debugfs_add_device(struct ptp_ocp *bp) 4352 { 4353 struct dentry *d; 4354 4355 d = debugfs_create_dir(dev_name(&bp->dev), ptp_ocp_debugfs_root); 4356 bp->debug_root = d; 4357 debugfs_create_file("summary", 0444, bp->debug_root, 4358 &bp->dev, &ptp_ocp_summary_fops); 4359 if (bp->tod) 4360 debugfs_create_file("tod_status", 0444, bp->debug_root, 4361 &bp->dev, &ptp_ocp_tod_status_fops); 4362 } 4363 4364 static void 4365 ptp_ocp_debugfs_remove_device(struct ptp_ocp *bp) 4366 { 4367 debugfs_remove_recursive(bp->debug_root); 4368 } 4369 4370 static void 4371 ptp_ocp_debugfs_init(void) 4372 { 4373 ptp_ocp_debugfs_root = debugfs_create_dir("timecard", NULL); 4374 } 4375 4376 static void 4377 ptp_ocp_debugfs_fini(void) 4378 { 4379 debugfs_remove_recursive(ptp_ocp_debugfs_root); 4380 } 4381 4382 static void 4383 ptp_ocp_dev_release(struct device *dev) 4384 { 4385 struct ptp_ocp *bp = dev_get_drvdata(dev); 4386 4387 mutex_lock(&ptp_ocp_lock); 4388 idr_remove(&ptp_ocp_idr, bp->id); 4389 mutex_unlock(&ptp_ocp_lock); 4390 } 4391 4392 static int 4393 ptp_ocp_device_init(struct ptp_ocp *bp, struct pci_dev *pdev) 4394 { 4395 int i, err; 4396 4397 mutex_lock(&ptp_ocp_lock); 4398 err = idr_alloc(&ptp_ocp_idr, bp, 0, 0, GFP_KERNEL); 4399 mutex_unlock(&ptp_ocp_lock); 4400 if (err < 0) { 4401 dev_err(&pdev->dev, "idr_alloc failed: %d\n", err); 4402 return err; 4403 } 4404 bp->id = err; 4405 4406 bp->ptp_info = ptp_ocp_clock_info; 4407 spin_lock_init(&bp->lock); 4408 4409 for (i = 0; i < __PORT_COUNT; i++) 4410 bp->port[i].line = -1; 4411 4412 bp->pdev = pdev; 4413 4414 device_initialize(&bp->dev); 4415 dev_set_name(&bp->dev, "ocp%d", bp->id); 4416 bp->dev.class = &timecard_class; 4417 bp->dev.parent = &pdev->dev; 4418 bp->dev.release = ptp_ocp_dev_release; 4419 dev_set_drvdata(&bp->dev, bp); 4420 4421 err = device_add(&bp->dev); 4422 if (err) { 4423 dev_err(&bp->dev, "device add failed: %d\n", err); 4424 goto out; 4425 } 4426 4427 pci_set_drvdata(pdev, bp); 4428 4429 return 0; 4430 4431 out: 4432 put_device(&bp->dev); 4433 return err; 4434 } 4435 4436 static void 4437 ptp_ocp_symlink(struct ptp_ocp *bp, struct device *child, const char *link) 4438 { 4439 struct device *dev = &bp->dev; 4440 4441 if (sysfs_create_link(&dev->kobj, &child->kobj, link)) 4442 dev_err(dev, "%s symlink failed\n", link); 4443 } 4444 4445 static void 4446 ptp_ocp_link_child(struct ptp_ocp *bp, const char *name, const char *link) 4447 { 4448 struct device *dev, *child; 4449 4450 dev = &bp->pdev->dev; 4451 4452 child = device_find_child_by_name(dev, name); 4453 if (!child) { 4454 dev_err(dev, "Could not find device %s\n", name); 4455 return; 4456 } 4457 4458 ptp_ocp_symlink(bp, child, link); 4459 put_device(child); 4460 } 4461 4462 static int 4463 ptp_ocp_complete(struct ptp_ocp *bp) 4464 { 4465 struct pps_device *pps; 4466 char buf[32]; 4467 4468 sprintf(buf, "ptp%d", ptp_clock_index(bp->ptp)); 4469 ptp_ocp_link_child(bp, buf, "ptp"); 4470 4471 pps = pps_lookup_dev(bp->ptp); 4472 if (pps) 4473 ptp_ocp_symlink(bp, &pps->dev, "pps"); 4474 4475 ptp_ocp_debugfs_add_device(bp); 4476 4477 return 0; 4478 } 4479 4480 static void 4481 ptp_ocp_phc_info(struct ptp_ocp *bp) 4482 { 4483 struct timespec64 ts; 4484 u32 version, select; 4485 4486 version = ioread32(&bp->reg->version); 4487 select = ioread32(&bp->reg->select); 4488 dev_info(&bp->pdev->dev, "Version %d.%d.%d, clock %s, device ptp%d\n", 4489 version >> 24, (version >> 16) & 0xff, version & 0xffff, 4490 ptp_ocp_select_name_from_val(ptp_ocp_clock, select >> 16), 4491 ptp_clock_index(bp->ptp)); 4492 4493 if (!ptp_ocp_gettimex(&bp->ptp_info, &ts, NULL)) 4494 dev_info(&bp->pdev->dev, "Time: %lld.%ld, %s\n", 4495 ts.tv_sec, ts.tv_nsec, 4496 bp->sync ? "in-sync" : "UNSYNCED"); 4497 } 4498 4499 static void 4500 ptp_ocp_serial_info(struct device *dev, const char *name, int port, int baud) 4501 { 4502 if (port != -1) 4503 dev_info(dev, "%5s: /dev/ttyS%-2d @ %6d\n", name, port, baud); 4504 } 4505 4506 static void 4507 ptp_ocp_info(struct ptp_ocp *bp) 4508 { 4509 static int nmea_baud[] = { 4510 1200, 2400, 4800, 9600, 19200, 38400, 4511 57600, 115200, 230400, 460800, 921600, 4512 1000000, 2000000 4513 }; 4514 struct device *dev = &bp->pdev->dev; 4515 u32 reg; 4516 int i; 4517 4518 ptp_ocp_phc_info(bp); 4519 4520 for (i = 0; i < __PORT_COUNT; i++) { 4521 if (i == PORT_NMEA && bp->nmea_out && bp->port[PORT_NMEA].line != -1) { 4522 bp->port[PORT_NMEA].baud = -1; 4523 4524 reg = ioread32(&bp->nmea_out->uart_baud); 4525 if (reg < ARRAY_SIZE(nmea_baud)) 4526 bp->port[PORT_NMEA].baud = nmea_baud[reg]; 4527 } 4528 ptp_ocp_serial_info(dev, ptp_ocp_tty_port_name(i), bp->port[i].line, 4529 bp->port[i].baud); 4530 } 4531 } 4532 4533 static void 4534 ptp_ocp_detach_sysfs(struct ptp_ocp *bp) 4535 { 4536 struct device *dev = &bp->dev; 4537 4538 sysfs_remove_link(&dev->kobj, "ptp"); 4539 sysfs_remove_link(&dev->kobj, "pps"); 4540 } 4541 4542 static void 4543 ptp_ocp_detach(struct ptp_ocp *bp) 4544 { 4545 int i; 4546 4547 ptp_ocp_debugfs_remove_device(bp); 4548 ptp_ocp_detach_sysfs(bp); 4549 ptp_ocp_attr_group_del(bp); 4550 if (timer_pending(&bp->watchdog)) 4551 timer_delete_sync(&bp->watchdog); 4552 if (bp->ts0) 4553 ptp_ocp_unregister_ext(bp->ts0); 4554 if (bp->ts1) 4555 ptp_ocp_unregister_ext(bp->ts1); 4556 if (bp->ts2) 4557 ptp_ocp_unregister_ext(bp->ts2); 4558 if (bp->ts3) 4559 ptp_ocp_unregister_ext(bp->ts3); 4560 if (bp->ts4) 4561 ptp_ocp_unregister_ext(bp->ts4); 4562 if (bp->pps) 4563 ptp_ocp_unregister_ext(bp->pps); 4564 for (i = 0; i < 4; i++) 4565 if (bp->signal_out[i]) 4566 ptp_ocp_unregister_ext(bp->signal_out[i]); 4567 for (i = 0; i < __PORT_COUNT; i++) 4568 if (bp->port[i].line != -1) 4569 serial8250_unregister_port(bp->port[i].line); 4570 platform_device_unregister(bp->spi_flash); 4571 platform_device_unregister(bp->i2c_ctrl); 4572 if (bp->i2c_clk) 4573 clk_hw_unregister_fixed_rate(bp->i2c_clk); 4574 if (bp->n_irqs) 4575 pci_free_irq_vectors(bp->pdev); 4576 if (bp->ptp) 4577 ptp_clock_unregister(bp->ptp); 4578 kfree(bp->ptp_info.pin_config); 4579 device_unregister(&bp->dev); 4580 } 4581 4582 static int 4583 ptp_ocp_dpll_lock_status_get(const struct dpll_device *dpll, void *priv, 4584 enum dpll_lock_status *status, 4585 enum dpll_lock_status_error *status_error, 4586 struct netlink_ext_ack *extack) 4587 { 4588 struct ptp_ocp *bp = priv; 4589 4590 *status = bp->sync ? DPLL_LOCK_STATUS_LOCKED : DPLL_LOCK_STATUS_UNLOCKED; 4591 4592 return 0; 4593 } 4594 4595 static int ptp_ocp_dpll_state_get(const struct dpll_pin *pin, void *pin_priv, 4596 const struct dpll_device *dpll, void *priv, 4597 enum dpll_pin_state *state, 4598 struct netlink_ext_ack *extack) 4599 { 4600 struct ptp_ocp *bp = priv; 4601 int idx; 4602 4603 if (bp->pps_select) { 4604 idx = ioread32(&bp->pps_select->gpio1); 4605 *state = (&bp->sma[idx] == pin_priv) ? DPLL_PIN_STATE_CONNECTED : 4606 DPLL_PIN_STATE_SELECTABLE; 4607 return 0; 4608 } 4609 NL_SET_ERR_MSG(extack, "pin selection is not supported on current HW"); 4610 return -EINVAL; 4611 } 4612 4613 static int ptp_ocp_dpll_mode_get(const struct dpll_device *dpll, void *priv, 4614 enum dpll_mode *mode, struct netlink_ext_ack *extack) 4615 { 4616 *mode = DPLL_MODE_AUTOMATIC; 4617 return 0; 4618 } 4619 4620 static int ptp_ocp_dpll_direction_get(const struct dpll_pin *pin, 4621 void *pin_priv, 4622 const struct dpll_device *dpll, 4623 void *priv, 4624 enum dpll_pin_direction *direction, 4625 struct netlink_ext_ack *extack) 4626 { 4627 struct ptp_ocp_sma_connector *sma = pin_priv; 4628 4629 *direction = sma->mode == SMA_MODE_IN ? 4630 DPLL_PIN_DIRECTION_INPUT : 4631 DPLL_PIN_DIRECTION_OUTPUT; 4632 return 0; 4633 } 4634 4635 static int ptp_ocp_dpll_direction_set(const struct dpll_pin *pin, 4636 void *pin_priv, 4637 const struct dpll_device *dpll, 4638 void *dpll_priv, 4639 enum dpll_pin_direction direction, 4640 struct netlink_ext_ack *extack) 4641 { 4642 struct ptp_ocp_sma_connector *sma = pin_priv; 4643 struct ptp_ocp *bp = dpll_priv; 4644 enum ptp_ocp_sma_mode mode; 4645 int sma_nr = (sma - bp->sma); 4646 4647 if (sma->fixed_dir) 4648 return -EOPNOTSUPP; 4649 mode = direction == DPLL_PIN_DIRECTION_INPUT ? 4650 SMA_MODE_IN : SMA_MODE_OUT; 4651 return ptp_ocp_sma_store_val(bp, 0, mode, sma_nr + 1); 4652 } 4653 4654 static int ptp_ocp_dpll_frequency_set(const struct dpll_pin *pin, 4655 void *pin_priv, 4656 const struct dpll_device *dpll, 4657 void *dpll_priv, u64 frequency, 4658 struct netlink_ext_ack *extack) 4659 { 4660 struct ptp_ocp_sma_connector *sma = pin_priv; 4661 struct ptp_ocp *bp = dpll_priv; 4662 const struct ocp_selector *tbl; 4663 int sma_nr = (sma - bp->sma); 4664 int i; 4665 4666 if (sma->fixed_fcn) 4667 return -EOPNOTSUPP; 4668 4669 tbl = bp->sma_op->tbl[sma->mode]; 4670 for (i = 0; tbl[i].name; i++) 4671 if (tbl[i].frequency == frequency) 4672 return ptp_ocp_sma_store_val(bp, i, sma->mode, sma_nr + 1); 4673 return -EINVAL; 4674 } 4675 4676 static int ptp_ocp_dpll_frequency_get(const struct dpll_pin *pin, 4677 void *pin_priv, 4678 const struct dpll_device *dpll, 4679 void *dpll_priv, u64 *frequency, 4680 struct netlink_ext_ack *extack) 4681 { 4682 struct ptp_ocp_sma_connector *sma = pin_priv; 4683 struct ptp_ocp *bp = dpll_priv; 4684 const struct ocp_selector *tbl; 4685 int sma_nr = (sma - bp->sma); 4686 u32 val; 4687 int i; 4688 4689 val = bp->sma_op->get(bp, sma_nr + 1); 4690 tbl = bp->sma_op->tbl[sma->mode]; 4691 for (i = 0; tbl[i].name; i++) 4692 if (val == tbl[i].value) { 4693 *frequency = tbl[i].frequency; 4694 return 0; 4695 } 4696 4697 return -EINVAL; 4698 } 4699 4700 static const struct dpll_device_ops dpll_ops = { 4701 .lock_status_get = ptp_ocp_dpll_lock_status_get, 4702 .mode_get = ptp_ocp_dpll_mode_get, 4703 }; 4704 4705 static const struct dpll_pin_ops dpll_pins_ops = { 4706 .frequency_get = ptp_ocp_dpll_frequency_get, 4707 .frequency_set = ptp_ocp_dpll_frequency_set, 4708 .direction_get = ptp_ocp_dpll_direction_get, 4709 .direction_set = ptp_ocp_dpll_direction_set, 4710 .state_on_dpll_get = ptp_ocp_dpll_state_get, 4711 }; 4712 4713 static void 4714 ptp_ocp_sync_work(struct work_struct *work) 4715 { 4716 struct ptp_ocp *bp; 4717 bool sync; 4718 4719 bp = container_of(work, struct ptp_ocp, sync_work.work); 4720 sync = !!(ioread32(&bp->reg->status) & OCP_STATUS_IN_SYNC); 4721 4722 if (bp->sync != sync) 4723 dpll_device_change_ntf(bp->dpll); 4724 4725 bp->sync = sync; 4726 4727 queue_delayed_work(system_power_efficient_wq, &bp->sync_work, HZ); 4728 } 4729 4730 static int 4731 ptp_ocp_probe(struct pci_dev *pdev, const struct pci_device_id *id) 4732 { 4733 struct devlink *devlink; 4734 struct ptp_ocp *bp; 4735 int err, i; 4736 u64 clkid; 4737 4738 devlink = devlink_alloc(&ptp_ocp_devlink_ops, sizeof(*bp), &pdev->dev); 4739 if (!devlink) { 4740 dev_err(&pdev->dev, "devlink_alloc failed\n"); 4741 return -ENOMEM; 4742 } 4743 4744 err = pci_enable_device(pdev); 4745 if (err) { 4746 dev_err(&pdev->dev, "pci_enable_device\n"); 4747 goto out_free; 4748 } 4749 4750 bp = devlink_priv(devlink); 4751 err = ptp_ocp_device_init(bp, pdev); 4752 if (err) 4753 goto out_disable; 4754 4755 INIT_DELAYED_WORK(&bp->sync_work, ptp_ocp_sync_work); 4756 4757 /* compat mode. 4758 * Older FPGA firmware only returns 2 irq's. 4759 * allow this - if not all of the IRQ's are returned, skip the 4760 * extra devices and just register the clock. 4761 */ 4762 err = pci_alloc_irq_vectors(pdev, 1, 17, PCI_IRQ_MSI | PCI_IRQ_MSIX); 4763 if (err < 0) { 4764 dev_err(&pdev->dev, "alloc_irq_vectors err: %d\n", err); 4765 goto out; 4766 } 4767 bp->n_irqs = err; 4768 pci_set_master(pdev); 4769 4770 err = ptp_ocp_register_resources(bp, id->driver_data); 4771 if (err) 4772 goto out; 4773 4774 bp->ptp = ptp_clock_register(&bp->ptp_info, &pdev->dev); 4775 if (IS_ERR(bp->ptp)) { 4776 err = PTR_ERR(bp->ptp); 4777 dev_err(&pdev->dev, "ptp_clock_register: %d\n", err); 4778 bp->ptp = NULL; 4779 goto out; 4780 } 4781 4782 err = ptp_ocp_complete(bp); 4783 if (err) 4784 goto out; 4785 4786 ptp_ocp_info(bp); 4787 devlink_register(devlink); 4788 4789 clkid = pci_get_dsn(pdev); 4790 bp->dpll = dpll_device_get(clkid, 0, THIS_MODULE); 4791 if (IS_ERR(bp->dpll)) { 4792 err = PTR_ERR(bp->dpll); 4793 dev_err(&pdev->dev, "dpll_device_alloc failed\n"); 4794 goto out; 4795 } 4796 4797 err = dpll_device_register(bp->dpll, DPLL_TYPE_PPS, &dpll_ops, bp); 4798 if (err) 4799 goto out; 4800 4801 for (i = 0; i < OCP_SMA_NUM; i++) { 4802 bp->sma[i].dpll_pin = dpll_pin_get(clkid, i, THIS_MODULE, &bp->sma[i].dpll_prop); 4803 if (IS_ERR(bp->sma[i].dpll_pin)) { 4804 err = PTR_ERR(bp->sma[i].dpll_pin); 4805 goto out_dpll; 4806 } 4807 4808 err = dpll_pin_register(bp->dpll, bp->sma[i].dpll_pin, &dpll_pins_ops, 4809 &bp->sma[i]); 4810 if (err) { 4811 dpll_pin_put(bp->sma[i].dpll_pin); 4812 goto out_dpll; 4813 } 4814 } 4815 queue_delayed_work(system_power_efficient_wq, &bp->sync_work, HZ); 4816 4817 return 0; 4818 out_dpll: 4819 while (i) { 4820 --i; 4821 dpll_pin_unregister(bp->dpll, bp->sma[i].dpll_pin, &dpll_pins_ops, &bp->sma[i]); 4822 dpll_pin_put(bp->sma[i].dpll_pin); 4823 } 4824 dpll_device_put(bp->dpll); 4825 out: 4826 ptp_ocp_detach(bp); 4827 out_disable: 4828 pci_disable_device(pdev); 4829 out_free: 4830 devlink_free(devlink); 4831 return err; 4832 } 4833 4834 static void 4835 ptp_ocp_remove(struct pci_dev *pdev) 4836 { 4837 struct ptp_ocp *bp = pci_get_drvdata(pdev); 4838 struct devlink *devlink = priv_to_devlink(bp); 4839 int i; 4840 4841 cancel_delayed_work_sync(&bp->sync_work); 4842 for (i = 0; i < OCP_SMA_NUM; i++) { 4843 if (bp->sma[i].dpll_pin) { 4844 dpll_pin_unregister(bp->dpll, bp->sma[i].dpll_pin, &dpll_pins_ops, &bp->sma[i]); 4845 dpll_pin_put(bp->sma[i].dpll_pin); 4846 } 4847 } 4848 dpll_device_unregister(bp->dpll, &dpll_ops, bp); 4849 dpll_device_put(bp->dpll); 4850 devlink_unregister(devlink); 4851 ptp_ocp_detach(bp); 4852 pci_disable_device(pdev); 4853 4854 devlink_free(devlink); 4855 } 4856 4857 static struct pci_driver ptp_ocp_driver = { 4858 .name = KBUILD_MODNAME, 4859 .id_table = ptp_ocp_pcidev_id, 4860 .probe = ptp_ocp_probe, 4861 .remove = ptp_ocp_remove, 4862 }; 4863 4864 static int 4865 ptp_ocp_i2c_notifier_call(struct notifier_block *nb, 4866 unsigned long action, void *data) 4867 { 4868 struct device *dev, *child = data; 4869 struct ptp_ocp *bp; 4870 bool add; 4871 4872 switch (action) { 4873 case BUS_NOTIFY_ADD_DEVICE: 4874 case BUS_NOTIFY_DEL_DEVICE: 4875 add = action == BUS_NOTIFY_ADD_DEVICE; 4876 break; 4877 default: 4878 return 0; 4879 } 4880 4881 if (!i2c_verify_adapter(child)) 4882 return 0; 4883 4884 dev = child; 4885 while ((dev = dev->parent)) 4886 if (dev->driver && !strcmp(dev->driver->name, KBUILD_MODNAME)) 4887 goto found; 4888 return 0; 4889 4890 found: 4891 bp = dev_get_drvdata(dev); 4892 if (add) 4893 ptp_ocp_symlink(bp, child, "i2c"); 4894 else 4895 sysfs_remove_link(&bp->dev.kobj, "i2c"); 4896 4897 return 0; 4898 } 4899 4900 static struct notifier_block ptp_ocp_i2c_notifier = { 4901 .notifier_call = ptp_ocp_i2c_notifier_call, 4902 }; 4903 4904 static int __init 4905 ptp_ocp_init(void) 4906 { 4907 const char *what; 4908 int err; 4909 4910 ptp_ocp_debugfs_init(); 4911 4912 what = "timecard class"; 4913 err = class_register(&timecard_class); 4914 if (err) 4915 goto out; 4916 4917 what = "i2c notifier"; 4918 err = bus_register_notifier(&i2c_bus_type, &ptp_ocp_i2c_notifier); 4919 if (err) 4920 goto out_notifier; 4921 4922 what = "ptp_ocp driver"; 4923 err = pci_register_driver(&ptp_ocp_driver); 4924 if (err) 4925 goto out_register; 4926 4927 return 0; 4928 4929 out_register: 4930 bus_unregister_notifier(&i2c_bus_type, &ptp_ocp_i2c_notifier); 4931 out_notifier: 4932 class_unregister(&timecard_class); 4933 out: 4934 ptp_ocp_debugfs_fini(); 4935 pr_err(KBUILD_MODNAME ": failed to register %s: %d\n", what, err); 4936 return err; 4937 } 4938 4939 static void __exit 4940 ptp_ocp_fini(void) 4941 { 4942 bus_unregister_notifier(&i2c_bus_type, &ptp_ocp_i2c_notifier); 4943 pci_unregister_driver(&ptp_ocp_driver); 4944 class_unregister(&timecard_class); 4945 ptp_ocp_debugfs_fini(); 4946 } 4947 4948 module_init(ptp_ocp_init); 4949 module_exit(ptp_ocp_fini); 4950 4951 MODULE_DESCRIPTION("OpenCompute TimeCard driver"); 4952 MODULE_LICENSE("GPL v2"); 4953